W3cubDocs

/OpenJDK 25

Class HKDFParameterSpec.Extract

java.lang.Object
javax.crypto.spec.HKDFParameterSpec.Extract
All Implemented Interfaces:
AlgorithmParameterSpec, HKDFParameterSpec
Enclosing interface:
HKDFParameterSpec
public static final class HKDFParameterSpec.Extract extends Object implements HKDFParameterSpec
Defines the input parameters of an Extract operation as defined in RFC 5869.
Since:
25

Nested Class Summary

Method Summary

Modifier and Type Method Description
List<SecretKey> ikms()
Returns an unmodifiable List of input keying material values in the order they were added.
List<SecretKey> salts()
Returns an unmodifiable List of salt values in the order they were added.

Method Details

ikms

public List<SecretKey> ikms()
Returns an unmodifiable List of input keying material values in the order they were added. Returns an empty list if there are no input keying material values.

Input keying material values added by HKDFParameterSpec.Builder.addIKM(byte[]) are converted to a SecretKeySpec object. Empty arrays are discarded.

Implementation Note:
An HKDF implementation should concatenate the input keying materials into a single value to be used in HKDF-Extract.
Returns:
the unmodifiable List of input keying material values

salts

public List<SecretKey> salts()
Returns an unmodifiable List of salt values in the order they were added. Returns an empty list if there are no salt values.

Salt values added by HKDFParameterSpec.Builder.addSalt(byte[]) are converted to a SecretKeySpec object. Empty arrays are discarded.

Implementation Note:
An HKDF implementation should concatenate the salts into a single value to be used in HKDF-Extract.
Returns:
the unmodifiable List of salt values

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/javax/crypto/spec/HKDFParameterSpec.Extract.html