AlgorithmParameterSpec, HKDFParameterSpecHKDFParameterSpecpublic static final class HKDFParameterSpec.ExtractThenExpand extends Object implements HKDFParameterSpec
HKDFParameterSpec.Builder, HKDFParameterSpec.Expand, HKDFParameterSpec.Extract, HKDFParameterSpec.ExtractThenExpand
| Modifier and Type | Method | Description |
|---|---|---|
List |
ikms() |
Returns an unmodifiable List of input keying material values in the order they were added. |
byte[] |
info() |
Returns the optional context and application specific information. |
int |
length() |
Returns the length of the output keying material. |
List |
salts() |
Returns an unmodifiable List of salt values in the order they were added. |
public List<SecretKey> ikms()
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.
List of input keying material valuespublic List<SecretKey> salts()
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.
List of salt valuespublic byte[] info()
null if not specifiedpublic int length()
© 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.ExtractThenExpand.html