Enum secp256k1::Error [] [src]

pub enum Error {
    IncapableContext,
    IncorrectSignature,
    InvalidMessage,
    InvalidPublicKey,
    InvalidSignature,
    InvalidSecretKey,
    InvalidRecoveryId,
}

An ECDSA error

Variants

IncapableContext

A Secp256k1 was used for an operation, but it was not created to support this (so necessary precomputations have not been done)

IncorrectSignature

Signature failed verification

InvalidMessage

Badly sized message

InvalidPublicKey

Bad public key

InvalidSignature

Bad signature

InvalidSecretKey

Bad secret key

InvalidRecoveryId

Bad recovery id

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Error
[src]

fn clone(&self) -> Error

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Eq for Error
[src]

impl PartialEq for Error
[src]

fn eq(&self, __arg_0: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Copy for Error
[src]

impl Display for Error
[src]

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Error for Error
[src]

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more

fn description(&self) -> &str

A short description of the error. Read more