A complete Rust cryptosystem implementing FIPS 202 paired with a variety of Edwards curves. Engineered for performance; supports arbitrary message size.
SHA-3: NIST-Compliant Secure Hash Algorithm 3 (SHA-3) implementation for generating cryptographic hash values.
Edwards Elliptic Curve: A variety of Edwards curve implementations for elliptic curve cryptography (ECC) operations are offered, varying in security and efficiency. Curves can be easily interchanged in asymmetric operations to suit the needs of the application.
Add the following line to your Cargo.toml
file:
toml
capycrypt = "0.3.0"
This library uses the criterion crate for benches. Running:
bash
cargo bench
Conducts benchmarks in order from lowest security to highest. For example, the lowest security configuration available in this library is the pairing of E222 with cSHAKE256, while the highest security offered is E521 paired with cSHAKE512.