serai/crypto/ed448
Luke Parker 05dc474cb3
Correct std feature-flagging
If a crate has std set, it should enable std for all dependencies in order to
let them properly select which algorithms to use. Some crates fallback to
slower/worse algorithms on no-std.

Also more aggressively sets default-features = false leading to a *10%*
reduction in the amount of crates coordinator builds.
2023-10-31 07:44:02 -04:00
..
src Add msrv definitions to common and crypto 2023-08-02 14:17:57 -04:00
Cargo.toml Correct std feature-flagging 2023-10-31 07:44:02 -04:00
LICENSE Update licenses 2023-01-11 23:05:31 -05:00
README.md Use crypto-bigint's reduction in ed448 2023-04-19 03:35:57 -04:00

Minimal Ed448

Barebones implementation of Ed448 bound to the ff/group API, rejecting torsion to achieve a PrimeGroup definition.

This library has not been audited. While it is complete, and decently tested, any usage of it should be carefully considered.

constant time and no_std.