nettle 5.0.1

Rust bindings for the Nettle cryptographic library
1
2
3
4
5
6
7
//! Elliptic curve variant of the Digital Signature Standard.

mod keys;
pub use self::keys::generate_keypair;

mod sign;
pub use self::sign::{sign, verify};