Validate Authenticode signature on EXE - C++ without CAPICOM(在没有 CAPICOM 的情况下验证 EXE 上的 Authenticode 签名 - C++)
问题描述
我正在为安装程序 DLL 编写一个函数,以验证系统上已安装的 EXE 文件的 Authenticode 签名.
I'm writing a function for an installer DLL to verify the Authenticode signature of EXE files already installed on the system.
函数需要:
A) 验证签名是否有效.
B) 验证签名者是我们的组织.
A) verify that the signature is valid.
B) verify that the signer is our organization.
因为这是在安装程序中,并且因为它需要在较旧的 Win2k 安装上运行,所以我不想依赖 CAPICOM.dll,因为它可能不在目标系统上.
Because this is in an installer, and because this needs to run on older Win2k installations, I don't want to rely on CAPICOM.dll, as it may not be on the target system.
WinVerifyTrust API 可以很好地解决(A).
The WinVerifyTrust API works great to solve (A).
我需要找到一种方法将已知证书(或其中的属性)与签署相关 EXE 的证书进行比较.
I need to find a way to compare a known certificate (or properties therein) to the one that signed the EXE in question.
推荐答案
你应该使用 CryptQueryObject.
这篇 KB 文章演示了用法:如何从 Authenticode 签名的可执行文件中获取信息.
This KB-article demonstrates the use: How To Get Information from Authenticode Signed Executables.
对于询问如何在没有 Windows-API 的情况下执行此操作的评论者,我不知道任何可以执行此操作的库,但此处记录了格式:Windows Authenticode 可移植可执行签名格式
To the commenter that asked about how to do it without the Windows-APIs, I am not aware of any library that can do it, but the format is documented here: Windows Authenticode Portable Executable Signature Format
这篇关于在没有 CAPICOM 的情况下验证 EXE 上的 Authenticode 签名 - C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在没有 CAPICOM 的情况下验证 EXE 上的 Authenticode 签


基础教程推荐
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07