Trait pgp::types::KeyTrait[][src]

pub trait KeyTrait: Debug {
    fn fingerprint(&self) -> Vec<u8>;
fn key_id(&self) -> KeyId;
fn algorithm(&self) -> PublicKeyAlgorithm; fn is_signing_key(&self) -> bool { ... }
fn is_encryption_key(&self) -> bool { ... } }

Required methods

Returns the Key ID of the associated primary key.

Provided methods

Implementations on Foreign Types

Returns the Key ID of the associated primary key.

Implementors