Expand description
Traits for generating digital signatures
Traitsยง
- Digest
Signer - Sign the given prehashed message
DigestusingSelf. - Randomized
Digest Signer - Combination of
DigestSignerandRandomizedSignerwith support for computing a signature over a digest which requires entropy from an RNG. - Randomized
Signer - Sign the given message using the provided external randomness source.
- Signer
- Sign the provided message bytestring using
Self(e.g. a cryptographic key or connection to an HSM), returning a digital signature. - Signer
Mut - Sign the provided message bytestring using
&mut Self(e.g. an evolving cryptographic key such as a stateful hash-based signature), returning a digital signature.