Trait signatory::Sha256Verifier[][src]

pub trait Sha256Verifier<S>: Send + Sync where
    S: Signature
{ fn verify_sha256(&self, msg: &[u8], signature: &S) -> Result<(), Error>; }

Verifier which computes SHA-256 digests of messages

Required Methods

Verify a signature of the SHA-256 digest of a message

Implementors