Enum diem_crypto::hkdf::HkdfError
source · pub enum HkdfError {
InvalidOutputLengthError,
WrongPseudorandomKeyError,
MACKeyError,
InvalidSeedLengthError,
}
Expand description
An error type for HKDF key derivation issues.
This enum reflects there are various causes of HKDF failures, including: a) requested HKDF output size exceeds the maximum allowed or is zero. b) hash functions outputting less than 32 bits are not supported (i.e., SHA1 is not supported). c) small PRK value in HKDF-Expand according to RFC 5869. d) any other underlying HMAC error.
Variants§
InvalidOutputLengthError
HKDF expand output exceeds the maximum allowed or is zero.
WrongPseudorandomKeyError
PRK on HKDF-Expand should not be less than the underlying hash output bits.
MACKeyError
HMAC key related error; unlikely to happen because every key size is accepted in HMAC.
InvalidSeedLengthError
HKDF extract input seed should not be less than the minimum accepted.
Trait Implementations§
source§impl Error for HkdfError
impl Error for HkdfError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()