I have a signed dll and want to verify its signature before I use it. my application is written by C++. how can I get programmatically the dll's signature?
Thanks in advaned, Ruth
|
I have a signed dll and want to verify its signature before I use it. my application is written by C++. how can I get programmatically the dll's signature? Thanks in advaned, Ruth |
|||
|
|
You can use WinVerifyTrust function. |
|||
|
MSDN recommended way is to run SignTool which is part of CryptoAPI -
See Using SignTool to Verify a File Signature for details. |
|||
|
|
|
One of the options is CAPICOM library, which is available as 32-bit redistributable from Microsoft. The verification code can be as simple as:
You can also easily obtain additional information such as signer, certificate etc. If you don't feel like using CAPICOM, MSDN suggests alternate options to |
|||
|
|