Trait xxxdh::Verify[][src]

pub trait Verify {
    type S: Signature;
    fn verify(
        &self,
        data: &[u8],
        signature: &Self::S
    ) -> Result<(), SignatureError>; }
Expand description

Verify a signature

Associated Types

Required methods

Verify a signature

Implementors