pub struct HKdfOperation<'a, H: HashFunction + Clone> { /* private fields */ }
Expand description
HKDF builder implementation
Trait Implementations§
Source§impl<'a, H: HashFunction + Clone> KdfOperation<'a, HkdfAlgorithm<H>> for HKdfOperation<'a, H>
impl<'a, H: HashFunction + Clone> KdfOperation<'a, HkdfAlgorithm<H>> for HKdfOperation<'a, H>
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> Freeze for HKdfOperation<'a, H>
impl<'a, H> RefUnwindSafe for HKdfOperation<'a, H>where
H: RefUnwindSafe,
impl<'a, H> Send for HKdfOperation<'a, H>where
H: Sync,
impl<'a, H> Sync for HKdfOperation<'a, H>where
H: Sync,
impl<'a, H> Unpin for HKdfOperation<'a, H>
impl<'a, H> UnwindSafe for HKdfOperation<'a, H>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