Expand description
HMAC-based Extract-and-Expand Key Derivation Function.
HKDF is specified in RFC 5869.
Structs§
- Algorithm
- An HKDF algorithm.
- Okm
- An HKDF OKM (Output Keying Material)
- Prk
- A HKDF PRK (pseudorandom key).
- Salt
- A salt for HKDF operations.
Statics§
- HKDF_
SHA1_ FOR_ LEGACY_ USE_ ONLY - HKDF using HMAC-SHA-1. Obsolete.
- HKDF_
SHA256 - HKDF using HMAC-SHA-256.
- HKDF_
SHA384 - HKDF using HMAC-SHA-384.
- HKDF_
SHA512 - HKDF using HMAC-SHA-512.
Traits§
- KeyType
- The length of the OKM (Output Keying Material) for a
Prk::expand()
call.