nettle 3.0.0

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

mod keys;
pub use self::keys::{
    generate_keypair,
};

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