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
use core::fmt;
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Debug)]
pub enum Error {
InvalidDataSize,
InvalidKekSize {
size: usize,
},
InvalidOutputSize {
expected: usize,
},
IntegrityCheckFailed,
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Error::InvalidDataSize => write!(f, "data must be a multiple of 64 bits for AES-KW and less than 2^32 bytes for AES-KWP"),
Error::InvalidKekSize { size } => {
write!(f, "invalid AES KEK size: {}", size)
}
Error::InvalidOutputSize { expected } => {
write!(f, "invalid output buffer size: expected {}", expected)
}
Error::IntegrityCheckFailed => {
write!(f, "integrity check failed")
}
}
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}