1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use secp256k1::Error as SecpError;
use thiserror::Error;
#[derive(Error, Debug, PartialEq, Eq)]
pub enum Error {
#[error("invalid privkey")]
InvalidPrivKey,
#[error("invalid pubkey")]
InvalidPubKey,
#[error("invalid signature")]
InvalidSignature,
#[error("invalid message")]
InvalidMessage,
#[error("invalid recovery_id")]
InvalidRecoveryId,
#[error("{0}")]
Other(String),
}
impl From<SecpError> for Error {
fn from(e: SecpError) -> Self {
match e {
SecpError::InvalidPublicKey => Error::InvalidPubKey,
SecpError::InvalidSecretKey => Error::InvalidPrivKey,
SecpError::InvalidMessage => Error::InvalidMessage,
SecpError::InvalidRecoveryId => Error::InvalidRecoveryId,
_ => Error::InvalidSignature,
}
}
}