pub struct HkdfOperation<'a, H: HashFunction, const S: usize = 16> { /* private fields */ }
Expand description
Operation for HKDF operations
Trait Implementations§
Source§impl<'a, H: HashFunction + Clone, const S: usize> KdfOperation<'a, HkdfAlgorithm<H>> for HkdfOperation<'a, H, S>where
Salt<S>: HkdfCompatible,
impl<'a, H: HashFunction + Clone, const S: usize> KdfOperation<'a, HkdfAlgorithm<H>> for HkdfOperation<'a, H, S>where
Salt<S>: HkdfCompatible,
Source§fn with_output_length(self, length: usize) -> Self
fn with_output_length(self, length: usize) -> Self
Set the desired output length
Auto Trait Implementations§
impl<'a, H, const S: usize> Freeze for HkdfOperation<'a, H, S>
impl<'a, H, const S: usize> RefUnwindSafe for HkdfOperation<'a, H, S>where
H: RefUnwindSafe,
impl<'a, H, const S: usize> Send for HkdfOperation<'a, H, S>where
H: Sync,
impl<'a, H, const S: usize> Sync for HkdfOperation<'a, H, S>where
H: Sync,
impl<'a, H, const S: usize> Unpin for HkdfOperation<'a, H, S>
impl<'a, H, const S: usize> UnwindSafe for HkdfOperation<'a, H, S>where
H: RefUnwindSafe,
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