Files
base64
bitflags
block_buffer
block_padding
byte_tools
byteorder
cfg_if
crypto_mac
digest
fake_simd
foreign_types
foreign_types_shared
generic_array
hmac
itoa
jwt
lazy_static
libc
opaque_debug
openssl
openssl_sys
proc_macro2
quote
ryu
serde
serde_derive
serde_json
sha2
subtle
syn
typenum
unicode_xid
 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
use core::fmt;
#[cfg(feature = "std")]
use std::error;

/// Error type for signaling failed MAC verification
#[derive(Default, Debug, Copy, Clone, Eq, PartialEq)]
pub struct MacError;

/// Error type for signaling invalid key length for MAC initialization
#[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 error::Error for MacError {
    fn description(&self) -> &str {
        "failed MAC verification"
    }
}

#[cfg(feature = "std")]
impl error::Error for InvalidKeyLength {
    fn description(&self) -> &str {
        "invalid key length"
    }
}