pub trait VerifySignature {
    fn verify(
        &self,
        data: &[u8],
        signature: &CryptoString
    ) -> Result<bool, EzNaclError>; }
Expand description

The Verify trait is implemented by any public signature verification key

Required Methods

Implementors