Trait rpm::signature::Verifying[][src]

pub trait Verifying<A>: Debug where
    A: Algorithm,
    Self::Signature: AsRef<[u8]>, 
{ type Signature; fn verify<R: Read>(&self, data: R, signature: &[u8]) -> Result<(), RPMError>; }
Expand description

Verification trait to be implement for RPM signature verification.

Associated Types

Required methods

Implementations on Foreign Types

Implement unreachable verifier for the empty tuple()

Implementors