pub trait Signer: SignerBoxClone {
    fn sign(&self, data: &[u8]) -> Result<Vec<u8>, TinkError>;
}
Expand description

Signer is the signing interface for digital signature.

Implementations of this trait are secure against adaptive chosen-message attacks. Signing data ensures authenticity and integrity of that data, but not its secrecy.

Required methods

Computes the digital signature for data.

Implementors