ecdsa 0.5.0

Signature and elliptic curve types providing interoperable support for the Elliptic Curve Digital Signature Algorithm (ECDSA)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Elliptic curves (short Weierstrass form) used by ECDSA

pub use elliptic_curve::weierstrass::{point::*, Curve};

#[cfg(feature = "p256")]
pub mod nistp256;
#[cfg(feature = "p256")]
pub use self::nistp256::NistP256;

#[cfg(feature = "p384")]
pub mod nistp384;
#[cfg(feature = "p384")]
pub use self::nistp384::NistP384;

#[cfg(feature = "k256")]
pub mod secp256k1;
#[cfg(feature = "k256")]
pub use self::secp256k1::Secp256k1;