Crate ed448_verifier
source ·Expand description
An implementation of Ed448 verifier.
§Introduction
This library has not been officially audited and reviewed. Use it AT YOUR OWN RISK.
This library wraps ed448-goldilocks
to provide the signature verification feature.
Please get started from looking at VerifyingKey
.
Most of the design was taken from ed25519-dalek
.
§Features
digest
: Implementssignature::DigestVerifier
forVerifyingKey
sha3
: Implementssignature::Verifier
, and optionallysignature::DigestVerifier
, forVerifyingKey
usingsha3::Shake256
. This feature is enabled by default.
Re-exports§
pub use signature::Signature;
pub use verifying::VerifyingKey;
Modules§
- Common constants.
- Adapter for extendable output functions (XOFs) to make them
Digest
with a fixed output size. - Ed448 signature.
- Ed448 verifier.