sn_curv 0.10.1

Curv contains an extremely simple interface to onboard new elliptic curves. Use this library for general purpose elliptic curve cryptography
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod arithmetic;
mod encoded_point;
mod encoded_scalar;
pub mod error;
mod generator;
mod point;
mod scalar;
mod serde_support;

pub use self::{
    encoded_point::EncodedPoint, encoded_scalar::EncodedScalar, generator::Generator, point::Point,
    scalar::Scalar,
};