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.