nettle 3.0.0

Rust bindings for the Nettle cryptographic library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Types for ECs in Weierstraß form.

mod types;
pub use self::types::{
    Point,
    Scalar,
};

mod curves;
pub use self::curves::{
    Curve,
    Secp192r1,
    Secp224r1,
    Secp256r1,
    Secp384r1,
    Secp521r1,
};