Trait signatory::Sha512Verifier[][src]

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

Verifier which computes SHA-512 digests of messages

Required Methods

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

Implementors