Microsoft code signing library (and utility) for Rust.
This library is a convenience wrapper around Microsoft's signing tool and requires the Windows SDK to be installed.
It provides a simple way to sign Windows binaries without having to manually mess with figuring out where signtool.exe is located or which one to use, which can be a bit of a pain due to it changing with pretty much every new Windows SDK version. Currently all versions of the Windows 10 SDK are supported, and the newest one installed will be used.
```rust // Locate signing tool let signtool = match SignTool::locate_latest().unwrap();
// Set up signing parameters
let signparams = SignParams {
digestalgorithm: "sha256".toowned(),
certificatethumbprint: "
// Sign yourapp.exe signtool.sign("yourapp.exe", &sign_params).unwrap(); ```
```
codesign.exe -c
yourapp.exe ```