1use thiserror::Error;
2
3#[derive(Error, Debug)]
4pub enum KeystoreError {
6 #[error("Mac Mismatch")]
9 MacMismatch,
10 #[error("IO: {0}")]
12 StdIo(String),
13 #[error("serde-json: {0}")]
15 SerdeJson(String),
16 #[error("scrypt {0:?}")]
18 ScryptInvalidParams(scrypt::errors::InvalidParams),
19 #[error("scrypt {0:?}")]
21 ScryptInvalidOuputLen(scrypt::errors::InvalidOutputLen),
22 #[error("aes {0:?}")]
24 AesInvalidKeyNonceLength(aes::cipher::InvalidLength),
25
26 #[cfg(feature = "geth-compat")]
28 #[error(transparent)]
29 K256Error(#[from] k256::ecdsa::Error),
30}
31
32impl From<scrypt::errors::InvalidParams> for KeystoreError {
33 fn from(e: scrypt::errors::InvalidParams) -> Self {
34 Self::ScryptInvalidParams(e)
35 }
36}
37
38impl From<scrypt::errors::InvalidOutputLen> for KeystoreError {
39 fn from(e: scrypt::errors::InvalidOutputLen) -> Self {
40 Self::ScryptInvalidOuputLen(e)
41 }
42}
43
44impl From<aes::cipher::InvalidLength> for KeystoreError {
45 fn from(e: aes::cipher::InvalidLength) -> Self {
46 Self::AesInvalidKeyNonceLength(e)
47 }
48}
49
50impl From<std::io::Error> for KeystoreError {
51 fn from(e: std::io::Error) -> KeystoreError {
52 KeystoreError::StdIo(e.to_string())
53 }
54}
55
56impl From<serde_json::Error> for KeystoreError {
57 fn from(e: serde_json::Error) -> KeystoreError {
58 KeystoreError::SerdeJson(e.to_string())
59 }
60}