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§