pub trait Sign {
    type SIG: Signature;

    // Required method
    fn sign(&self, data: &[u8]) -> Self::SIG
       where Self: Sized;
}
Expand description

Sign a message.

Required Associated Types§

Required Methods§

source

fn sign(&self, data: &[u8]) -> Self::SIG
where Self: Sized,

Sign a message.

Implementors§