Derive cryptographic keys using HKDF (RFC 5869) — extract-then-expand with configurable salt and info
HKDF (RFC 5869) is used to derive multiple cryptographic keys from a single master secret. It is commonly used in TLS 1.3, Signal Protocol, and other secure systems.
Salt is optional but recommended. It prevents an attacker from using precomputed tables against the IKM and ensures different derived keys even with the same IKM.
Yes, completely free. All key derivation runs in your browser using the Web Crypto API.