https://github.com/messmerd/signatureutils
Windows digital signature utils
https://github.com/messmerd/signatureutils
authenticode code-signing digital-signature windows
Last synced: 4 months ago
JSON representation
Windows digital signature utils
- Host: GitHub
- URL: https://github.com/messmerd/signatureutils
- Owner: messmerd
- License: mit
- Created: 2022-08-25T05:35:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-22T00:39:19.000Z (over 1 year ago)
- Last Synced: 2025-07-29T11:58:06.112Z (10 months ago)
- Topics: authenticode, code-signing, digital-signature, windows
- Language: C++
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SignatureUtils
### Windows digital signature utils
Wincrypt is ugly, painful to work with, and confusing, so I created this project in modern C++ as a way to avoid directly using it for simple queries about Windows digital signatures.
Currently provides the following functions:
```C++
bool IsSigned(const std::string& filename);
std::optional GetIssuer(const std::string& filename);
std::optional GetSubject(const std::string& filename);
std::optional GetIssuerName(const std::string& filename);
std::optional GetSubjectName(const std::string& filename);
```
______
Created by Dalton Messmer .