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 {}