#[repr(u32)]pub enum KdfPrfKeyLen {
Len16 = 0,
Len32 = 1,
Len48 = 2,
Len64 = 3,
}
Expand description
KDF details for PRF, source key length
Variants§
Len16 = 0
source key length is 16 bytes
Len32 = 1
source key length is 32 bytes
Len48 = 2
source key length is 48 bytes
Len64 = 3
source key length is 64 bytes
Trait Implementations§
Source§impl Clone for KdfPrfKeyLen
impl Clone for KdfPrfKeyLen
Source§fn clone(&self) -> KdfPrfKeyLen
fn clone(&self) -> KdfPrfKeyLen
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 KdfPrfKeyLen
impl Debug for KdfPrfKeyLen
Source§impl PartialEq for KdfPrfKeyLen
impl PartialEq for KdfPrfKeyLen
impl StructuralPartialEq for KdfPrfKeyLen
Auto Trait Implementations§
impl Freeze for KdfPrfKeyLen
impl RefUnwindSafe for KdfPrfKeyLen
impl Send for KdfPrfKeyLen
impl Sync for KdfPrfKeyLen
impl Unpin for KdfPrfKeyLen
impl UnwindSafe for KdfPrfKeyLen
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