Trait rpm::signature::Signing[][src]

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

Signing trait to be implement for RPM signing.

Associated Types

Required methods

Implementations on Foreign Types

Implement unreachable signer for empty tuple ()

Implementors