pub fn expand<T, const N: usize>(
expander: &dyn HkdfExpander,
info: &[&[u8]],
) -> T展开描述
HKDF-Expand(PRK, info, L) 到 construct any type 从 一个 byte array.
PRKis the implicit key material represented by this instance.L := N; N is the size of the byte array.infois a slice of byte slices, which should be processed sequentially (or concatenated if that is not possible).
This is infallible, because the set of types (并 therefore their length) is known at compile time.