pub type SignatureError = Error;
Expand description
Errors which may occur while processing signatures and keypairs.
This error may arise due to:
-
Being given bytes with a length different to what was expected.
-
A problem decompressing
r
, a curve point, in theSignature
, or the curve point for aPublicKey
. -
A problem with the format of
s
, a scalar, in theSignature
. This is only raised if the high-bit of the scalar was set. (Scalars must only be constructed from 255-bit integers.) -
Failure of a signature to satisfy the verification equation.
Aliased Type§
struct SignatureError { /* private fields */ }
Implementations
Source§impl Error
impl Error
Sourcepub fn from_source(source: impl Into<Box<dyn Error + Send + Sync>>) -> Error
pub fn from_source(source: impl Into<Box<dyn Error + Send + Sync>>) -> Error
Create a new error with an associated source.
NOTE: The “source” should NOT be used to propagate cryptographic errors e.g. signature parsing or verification errors. The intended use cases are for propagating errors related to external signers, e.g. communication/authentication errors with HSMs, KMS, etc.