#signatures #ed25519 #signature #crypto #minisign

minisign-verify

A small crate to verify Minisign signatures

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

#1978 in Cryptography

Download history 8284/week @ 2023-11-20 8342/week @ 2023-11-27 7876/week @ 2023-12-04 9718/week @ 2023-12-11 8148/week @ 2023-12-18 5172/week @ 2023-12-25 6284/week @ 2024-01-01 8730/week @ 2024-01-08 8583/week @ 2024-01-15 8877/week @ 2024-01-22 8249/week @ 2024-01-29 7566/week @ 2024-02-05 8358/week @ 2024-02-12 10200/week @ 2024-02-19 10263/week @ 2024-02-26 10063/week @ 2024-03-04

39,552 downloads per month
Used in 75 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