[][src]Trait signature::DigestSigner

pub trait DigestSigner<D, S> where
    D: Digest,
    S: Signature
{ fn try_sign_digest(&self, digest: D) -> Result<S, Error>; fn sign_digest(&self, digest: D) -> S { ... } }
This is supported on feature="digest-preview" only.

Sign the given prehashed message Digest using Self.

Notes

This trait is primarily intended for signature algorithms based on the Fiat-Shamir heuristic, a method for converting an interactive challenge/response-based proof-of-knowledge protocol into an offline digital signature through the use of a random oracle, i.e. a digest function.

The security of such protocols critically rests upon the inability of an attacker to solve for the output of the random oracle, as generally otherwise such signature algorithms are a system of linear equations and therefore doing so would allow the attacker to trivially forge signatures.

To prevent misuse which would potentially allow this to be possible, this API accepts a [Digest] instance, rather than a raw digest value.

Required methods

fn try_sign_digest(&self, digest: D) -> Result<S, Error>

This is supported on feature="digest-preview" only.

Attempt to sign the given prehashed message Digest, returning a digital signature on success, or an error if something went wrong.

Loading content...

Provided methods

fn sign_digest(&self, digest: D) -> S

This is supported on feature="digest-preview" only.

Sign the given prehashed message Digest, returning a signature.

Panics in the event of a signing error.

Loading content...

Implementors

Loading content...