Python implementation of HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as defined in RFC 5869. Current version 0.0.3. Low-maintenance, no recent releases.
pip install hkdfNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Derive a 32-byte key using HKDF with random salt and input key material.
Use the cryptography library's HKDF implementation for better security and maintenance.
Use from hkdf import Hkdf and call hkdf.expand_key(info, length).
Use from hkdf import Hkdf.
Use hkdf.expand_key(info, length) instead of hkdf.expand(info, length).
No dependency data recorded yet.