pub trait EccKey {
    fn oid(&self) -> &[u8]Notable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [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

Implementors