Enum aptos_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
sourceimpl Error for HkdfError
impl Error for HkdfError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
impl Eq for HkdfError
impl StructuralEq for HkdfError
impl StructuralPartialEq for HkdfError
Auto Trait Implementations
impl RefUnwindSafe for HkdfError
impl Send for HkdfError
impl Sync for HkdfError
impl Unpin for HkdfError
impl UnwindSafe for HkdfError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more