An open API service indexing awesome lists of open source software.

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

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 .