cx448 0.1.1

A pure-Rust implementation of Ed448 and Curve448 and Decaf. This crate also includes signing and verifying of Ed448 signatures, and x448.
Documentation
1
2
3
4
5
6
7
8
/// This module will contain the EC arithmetic for the Twisted Edwards form of Goldilocks.
/// with the following affine equation : -x^2 + y^2 = 1 - 39082x^2y^2
/// This curve will be used as a backend for the Goldilocks, Ristretto and Decaf through the use of isogenies.
/// It will not be exposed in the public API.
pub(crate) mod affine;
pub(crate) mod extended;
pub(crate) mod extensible;
pub(crate) mod projective;