Modifier and Type | Class and Description |
---|---|
static class |
HKDFKeyGenerator.HKDFMasterKey
A secret key designed to be used as the master key for HKDF key generation.
|
Modifier and Type | Field and Description |
---|---|
static int |
HASH_BYTES_LEN
The HMAC output length in bytes.
|
static String |
HMAC_ALGORITHM
The HMAC algorithm.
|
Modifier and Type | Method and Description |
---|---|
static Key |
expandKey(Key masterKey,
String outputKeyAlgorithm,
byte[] info,
int outputKeySize)
Expands a master key into a derived key for a specific purpose.
|
static Key |
expandKey(Key masterKey,
String outputKeyAlgorithm,
int outputKeySize)
Expands a master key into a derived key for a specific purpose.
|
static Key |
expandKey(Key masterKey,
String outputKeyAlgorithm,
String purpose,
int outputKeySize)
Expands a master key into a derived key for a specific purpose.
|
static HKDFKeyGenerator.HKDFMasterKey |
extractMasterKey(byte[] inputKeyMaterial)
The HKDF "extract" phase that generates a master key from some input key material.
|
static HKDFKeyGenerator.HKDFMasterKey |
extractMasterKey(byte[] inputKeyMaterial,
byte[] salt)
The HKDF "extract" phase that generates a master key from some input key material.
|
public static final String HMAC_ALGORITHM
public static final int HASH_BYTES_LEN
public static HKDFKeyGenerator.HKDFMasterKey extractMasterKey(byte[] inputKeyMaterial)
HKDFKeyGenerator.expandKey(Key, String, String, int)
to derive a specific key for a particular usage.inputKeyMaterial
- the input master key material.public static HKDFKeyGenerator.HKDFMasterKey extractMasterKey(byte[] inputKeyMaterial, byte[] salt)
HKDFKeyGenerator.expandKey(Key, String, String, int)
to derive a specific key for a particular usage.inputKeyMaterial
- the input master key material.salt
- the random salt to use when deriving the master key. Should be at least 128 bits and uniformly
random.public static Key expandKey(Key masterKey, String outputKeyAlgorithm, String purpose, int outputKeySize)
masterKey
- the HKDF master key.outputKeyAlgorithm
- the algorithm for which the derived key is to be used, e.g. "AES".purpose
- an arbitrary application-specific string describing the purpose of this key (e.g. "OpenID Connect token signing".outputKeySize
- the output key size, in bytes. This can be between 0 and 8160 bytes.public static Key expandKey(Key masterKey, String outputKeyAlgorithm, byte[] info, int outputKeySize)
masterKey
- the HKDF master key.outputKeyAlgorithm
- the algorithm for which the derived key is to be used, e.g. "AES".info
- an arbitrary application-specific byte-string to include in the key derivation.outputKeySize
- the output key size, in bytes. This can be between 0 and 8160 bytes.public static Key expandKey(Key masterKey, String outputKeyAlgorithm, int outputKeySize)
HKDFKeyGenerator.expandKey(Key, String, String, int)
method except that the
outputKeyAlgorithm
is also used as the purpose
when deriving the key.masterKey
- the HKDF master key.outputKeyAlgorithm
- the algorithm for which the derived key is to be used, e.g. "AES".outputKeySize
- the output key size, in bytes. This can be between 0 and 8160 bytes.Copyright © 2010-2018, ForgeRock All Rights Reserved.