struct AwsLcHkdfExpander {
alg: Algorithm,
prk: Prk,
}
Fields§
§alg: Algorithm
§prk: Prk
Trait Implementations§
Source§impl HkdfExpander for AwsLcHkdfExpander
impl HkdfExpander for AwsLcHkdfExpander
Source§fn expand_slice(
&self,
info: &[&[u8]],
output: &mut [u8],
) -> Result<(), OutputLengthError>
fn expand_slice( &self, info: &[&[u8]], output: &mut [u8], ) -> Result<(), OutputLengthError>
HKDF-Expand(PRK, info, L)
into a slice. Read moreAuto Trait Implementations§
impl Freeze for AwsLcHkdfExpander
impl RefUnwindSafe for AwsLcHkdfExpander
impl Send for AwsLcHkdfExpander
impl Sync for AwsLcHkdfExpander
impl Unpin for AwsLcHkdfExpander
impl UnwindSafe for AwsLcHkdfExpander
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