EccKey

Trait EccKey 

Source
pub trait EccKey {
    // Required methods
    fn oid(&self) -> &[u8] ;
    fn private(&self) -> Vec<u8> ;
    fn public(&self) -> Vec<u8> ;
    fn ecc_type(&self) -> EccType;
}
Expand description

ECC-specific container for private key material to upload to an OpenPGP card.

Required Methods§

Source

fn oid(&self) -> &[u8]

Source

fn private(&self) -> Vec<u8>

Source

fn public(&self) -> Vec<u8>

Source

fn ecc_type(&self) -> EccType

Implementors§