Class HKDFParameterSpec.ExtractThenExpand

java.lang.Object
javax.crypto.spec.HKDFParameterSpec.ExtractThenExpand
All Implemented Interfaces:
AlgorithmParameterSpec, HKDFParameterSpecPREVIEW
Enclosing interface:
HKDFParameterSpecPREVIEW

public static final class HKDFParameterSpec.ExtractThenExpand extends Object implements HKDFParameterSpecPREVIEW
ExtractThenExpand is a preview API of the Java platform.
Programs can only use ExtractThenExpand when preview features are enabled.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Defines the input parameters of an ExtractThenExpand operation as defined in RFC 5869.
Since:
24
  • Method Details Link icon

    • ikms Link icon

      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[])PREVIEW are converted to a SecretKeySpec object. Empty arrays are discarded.

      Returns:
      the unmodifiable List of input keying material values
    • salts Link icon

      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[])PREVIEW are converted to a SecretKeySpec object. Empty arrays are discarded.

      Returns:
      the unmodifiable List of salt values
    • info Link icon

      public byte[] info()
      Returns the optional context and application specific information.
      Returns:
      a clone of the optional context and application specific information, or null if not specified
    • length Link icon

      public int length()
      Returns the length of the output keying material.
      Returns:
      the length of the output keying material