midnight-curves 0.2.0

Implementation of BLS12 381 and Jubjub curves.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Secp256k1 elliptic curve implementation.
//!
//! Defined over the base field `Fp`, with scalar field `Fq`.

mod curve;
mod fp;
mod fq;

pub use curve::*;
pub use fp::*;
pub use fq::*;