Module ring_compat::signature
source · Available on crate feature
signature
only.Expand description
Digital signatures: ECDSA (P-256/P-384), Ed25519
Modules
- Elliptic Curve Digital Signature Algorithm
- Ed25519 digital signature algorithm
Structs
- Signature errors.
Traits
- Signing keypair with an associated verifying key.
- Support for decoding/encoding signatures as bytes.
- Sign the provided message bytestring using
Self
(e.g. a cryptographic key or connection to an HSM), returning a digital signature. - Verify the provided message bytestring using
Self
(e.g. a public key)