Class HkdfKeyDerivationExample

java.lang.Object
net.jrodolfo.java_evolution.java25.key_derivation.HkdfKeyDerivationExample

public class HkdfKeyDerivationExample extends Object
Demonstrates the Java 25 Key Derivation Function API with HKDF-SHA256.

HKDF is the HMAC-based Key Derivation Function. It takes input key material, an optional salt, and application-specific context information, then derives key bytes for a concrete purpose. This is useful after a key exchange, such as KEM, because raw shared material is usually not the exact key an application should use directly.