11 releases

0.2.1 Mar 30, 2022
0.2.0 Oct 8, 2021
0.1.8 May 20, 2020
0.1.4 Nov 20, 2019
0.1.3 Apr 25, 2019

#1293 in Cryptography

Download history 8697/week @ 2023-12-06 9405/week @ 2023-12-13 6385/week @ 2023-12-20 5664/week @ 2023-12-27 7237/week @ 2024-01-03 8699/week @ 2024-01-10 9179/week @ 2024-01-17 8103/week @ 2024-01-24 8527/week @ 2024-01-31 7722/week @ 2024-02-07 8729/week @ 2024-02-14 9950/week @ 2024-02-21 10453/week @ 2024-02-28 11261/week @ 2024-03-06 9953/week @ 2024-03-13 9402/week @ 2024-03-20

42,635 downloads per month
Used in 78 crates (11 directly)

MIT license

86KB
2.5K SLoC

minisign-verify

A small, zero-dependencies Rust crate to verify Minisign signatures.

API documentation

Example:

let public_key =
    PublicKey::from_base64("RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3")
        .expect("Unable to decode the public key");

let signature = Signature::decode(
    "untrusted comment: signature from minisign secret key
RWQf6LRCGA9i59SLOFxz6NxvASXDJeRtuZykwQepbDEGt87ig1BNpWaVWuNrm73YiIiJbq71Wi+dP9eKL8OC351vwIasSSbXxwA=
trusted comment: timestamp:1555779966\tfile:test
QtKMXWyYcwdpZAlPF7tE2ENJkRd1ujvKjlj1m9RtHTBnZPa5WKU5uWRs5GoP5M/VqE81QFuMKI5k/SfNQUaOAA==",
    ).expect("Unable to decode the signature");

let bin = b"test";
public_key.verify(&bin[..], &signature, false).expect("Signature didn't verify");

lib.rs:

A small crate to verify Minisign signatures.

Example

use minisign_verify::{PublicKey, Signature};

let public_key =
    PublicKey::from_base64("RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3")
   .expect("Unable to decode the public key");

let signature = Signature::decode("untrusted comment: signature from minisign secret key
RUQf6LRCGA9i559r3g7V1qNyJDApGip8MfqcadIgT9CuhV3EMhHoN1mGTkUidF/z7SrlQgXdy8ofjb7bNJJylDOocrCo8KLzZwo=
trusted comment: timestamp:1633700835\tfile:test\tprehashed
wLMDjy9FLAuxZ3q4NlEvkgtyhrr0gtTu6KC4KBJdITbbOeAi1zBIYo0v4iTgt8jJpIidRJnp94ABQkJAgAooBQ==")
    .expect("Unable to decode the signature");

let bin = b"test";
public_key.verify(&bin[..], &signature, false).expect("Signature didn't verify");

No runtime deps