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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
use core::fmt::{self, Display};
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Debug)]
#[non_exhaustive]
pub enum Error {
AlgorithmInvalid,
#[cfg(feature = "ecdsa")]
Ecdsa,
KeyNameInvalid,
#[cfg(feature = "std")]
Io(std::io::Error),
#[cfg(feature = "std")]
NotADirectory,
#[cfg(feature = "std")]
Permissions,
Pkcs8(pkcs8::Error),
}
impl Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::AlgorithmInvalid => f.write_str("invalid algorithm"),
#[cfg(feature = "ecdsa")]
Self::Ecdsa => f.write_str("ECDSA error"),
Self::KeyNameInvalid => f.write_str("invalid key name"),
#[cfg(feature = "std")]
Self::Io(err) => write!(f, "{}", err),
#[cfg(feature = "std")]
Self::NotADirectory => f.write_str("not a directory"),
#[cfg(feature = "std")]
Self::Permissions => f.write_str("invalid file permissions"),
Self::Pkcs8(err) => write!(f, "{}", err),
}
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}
#[cfg(feature = "ecdsa")]
impl From<ecdsa::Error> for Error {
fn from(_: ecdsa::Error) -> Error {
Error::Ecdsa
}
}
impl From<pkcs8::Error> for Error {
fn from(err: pkcs8::Error) -> Error {
Error::Pkcs8(err)
}
}
impl From<pkcs8::der::Error> for Error {
fn from(err: pkcs8::der::Error) -> Error {
Error::Pkcs8(err.into())
}
}
#[cfg(feature = "std")]
impl From<std::io::Error> for Error {
fn from(err: std::io::Error) -> Error {
Error::Io(err)
}
}