minisign-rs
A Rust implementation lib of the Minisign.
Low-level library for the minisign system, designed to be used in CI/CD pipelines, or embedded into other processes (rather than manual command line).
!!! This library not support legacy signature format !!!
Example
let KeyPairBox = generate
.unwrap;
let msg = "test";
let sig_box = sign
.unwrap;
let v = verify.unwrap;
assert_eq!;