https://github.com/simdsoft/signtool
The code sign tool compatible with microsoft signtool.exe
https://github.com/simdsoft/signtool
Last synced: 5 months ago
JSON representation
The code sign tool compatible with microsoft signtool.exe
- Host: GitHub
- URL: https://github.com/simdsoft/signtool
- Owner: simdsoft
- License: apache-2.0
- Created: 2020-06-12T15:49:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-13T09:44:27.000Z (over 5 years ago)
- Last Synced: 2025-03-28T06:31:20.255Z (11 months ago)
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# signtool
The code sign tool compatible with microsoft signtool.exe
# references
https://www.codeproject.com/Articles/1271890/EV-Code-Signing-with-a-hardware-token
# count of signatures
```cpp
struct _WINTRUST_DATA {
// ...
#if (NTDDI_VERSION >= NTDDI_WIN8)
struct WINTRUST_SIGNATURE_SETTINGS_ *pSignatureSettings;
#endif // #if (NTDDI_VERSION >= NTDDI_WIN8)
};
struct _CRYPT_PROVIDER_SIGSTATE {
// ...
DWORD cSecondarySigs; //A count of the secondary signatures
// ...
}
```
refer to: https://famellee.wordpress.com/2016/09/08/retrieve-digital-signatures-using-wintrust/