Expand description
This module uses heap allocated vectors for cases where the output length is not const.
Functions§
- HKDF expand using the pre-key material
prk
andinfo
. The output length is defined through the result type. Returns the key material in an array of lengthokm_len
orError::OkmTooLarge
if the requestedokm_len
is too large. - HKDF using the
salt
, input key materialikm
,info
. The output length is defined through the result type. Callsextract
andexpand
with the given input.