pub enum SignatureError {
    /// The error variant used when the recover fails.
    UnrecoverablePublicKey: (),
    /// The error variant used when the public key is of the wrong type.
    InvalidPublicKey: (),
    /// The error variant used when signature verification fails.
    InvalidSignature: (),
    /// The error variant used when an invalid operation was performed.
    InvalidOperation: (),
}
Expand description

The error type used when a cryptographic signature function fails.

Variants

UnrecoverablePublicKey: ()

The error variant used when the recover fails.

InvalidPublicKey: ()

The error variant used when the public key is of the wrong type.

InvalidSignature: ()

The error variant used when signature verification fails.

InvalidOperation: ()

The error variant used when an invalid operation was performed.

Trait Implementations

pub fn abi_encode(self, buffer: Buffer) -> Buffer

pub fn abi_decode(refmut buffer: BufferReader) -> Self