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
use core::fmt;
#[derive(Default, Debug, Copy, Clone, Eq, PartialEq)]
pub struct MacError;
#[derive(Default, Debug, Copy, Clone, Eq, PartialEq)]
pub struct InvalidKeyLength;
impl fmt::Display for MacError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("failed MAC verification")
}
}
impl fmt::Display for InvalidKeyLength {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("invalid key length")
}
}
#[cfg(feature = "std")]
impl std::error::Error for MacError {}
#[cfg(feature = "std")]
impl std::error::Error for InvalidKeyLength {}