pub trait SignBytes {
    // Required method
    fn sign_bytes(&self) -> Result<Vec<u8>>;
}
Expand description

Behaviour to produce the bytes expected to be signs for the type in question.

Required Methods§

source

fn sign_bytes(&self) -> Result<Vec<u8>>

Returns the bytes to be signed with [’SigningKey`].

Implementors§