nettle 7.5.0

Rust bindings for the Nettle cryptographic library
Documentation
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};