pub trait Backend {
    fn fingerprint(&self) -> String;
    fn shuffle(&mut self) -> Result<(), PGPError>;
    fn get_armored_results(
        self,
        uid: &UserID
    ) -> Result<ArmoredKey, UniversalError>; }
Expand description

Backend adaptor trait

Required Methods

Get the fingerprint of the key

Rehash the fingerprint

Get armored secret key and public key

Implementors