Trait openpgp_card::CardUploadableKey[][src]

pub trait CardUploadableKey {
    fn get_key(&self) -> Result<PrivateKeyMaterial>;
fn get_ts(&self) -> u32;
fn get_fp(&self) -> [u8; 20]; }
Expand description

A PGP-implementation-agnostic wrapper for private key data, to upload to an OpenPGP card

Required methods

private key data

timestamp of (sub)key creation

fingerprint

Implementors