logo
 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;

/// Result type with the `aes-kw` crate's [`Error`].
pub type Result<T> = core::result::Result<T, Error>;

/// Errors emitted from the wrap and unwrap operations.
#[derive(Debug)]
pub enum Error {
    /// Input data length invalid.
    InvalidDataSize,

    /// Invalid KEK size.
    InvalidKekSize {
        /// KEK size provided in bytes (expected 8, 12, or 24).
        size: usize,
    },

    /// Output buffer size invalid.
    InvalidOutputSize {
        /// Expected size in bytes.
        expected: usize,
    },

    /// Integrity check did not pass.
    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"),
            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 {}