pub trait Sign {
    type SIG: Signature;

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

Sign a message.

Required Associated Types§

Required Methods§

Sign a message.

Implementors§