pub trait SignatureWrapper {
    fn public_key(&self) -> Vec<u8>;
    fn signature(&self) -> Vec<u8>;
}

Required Methods

Implementors