#[repr(u32)]pub enum HkdfMsgLoc {
Slot = 0,
TempKey = 1,
Input = 2,
Iv = 3,
}
Expand description
KDF details for HKDF. [place from which function should retrieve message for calculations]
Variants§
Slot = 0
message location in slot
TempKey = 1
message location in TempKey
Input = 2
message location in input parameter
Iv = 3
message location is a special IV function
Trait Implementations§
Source§impl Clone for HkdfMsgLoc
impl Clone for HkdfMsgLoc
Source§fn clone(&self) -> HkdfMsgLoc
fn clone(&self) -> HkdfMsgLoc
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HkdfMsgLoc
impl Debug for HkdfMsgLoc
Source§impl PartialEq for HkdfMsgLoc
impl PartialEq for HkdfMsgLoc
impl StructuralPartialEq for HkdfMsgLoc
Auto Trait Implementations§
impl Freeze for HkdfMsgLoc
impl RefUnwindSafe for HkdfMsgLoc
impl Send for HkdfMsgLoc
impl Sync for HkdfMsgLoc
impl Unpin for HkdfMsgLoc
impl UnwindSafe for HkdfMsgLoc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more