1use crate::Cipher;
4use core::fmt;
5
6pub type Result<T> = core::result::Result<T, Error>;
8
9#[derive(Clone, Debug, Eq, PartialEq)]
11#[non_exhaustive]
12pub enum Error {
13 Crypto,
15
16 KeySize,
18
19 IvSize,
21
22 TagSize,
24
25 UnsupportedCipher(Cipher),
27}
28
29impl fmt::Display for Error {
30 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
31 match self {
32 Error::Crypto => write!(f, "cryptographic error"),
33 Error::KeySize => write!(f, "invalid key size"),
34 Error::IvSize => write!(f, "invalid initialization vector size"),
35 Error::TagSize => write!(f, "invalid AEAD tag size"),
36 Error::UnsupportedCipher(cipher) => write!(f, "unsupported cipher: {}", cipher),
37 }
38 }
39}
40
41#[cfg(feature = "std")]
42impl std::error::Error for Error {}