pub trait KeyMaterial {
    fn public_key_bytes(&self) -> Vec<u8, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; fn private_key_bytes(&self) -> Vec<u8, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Return key material bytes

Required Methods

Returns the public key bytes as slice

Returns the secret key bytes as slice

Implementors