pub trait PublicKey {
    fn get_public_key(&self) -> CryptoString;
    fn get_public_str(&self) -> String;
    fn get_public_bytes(&self) -> Vec<u8>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; }
Expand description

The PublicKey trait defines an interface for getting the key data in various formats

Required Methods

Implementors