org.bouncycastle.crypto.hpke.HKDF Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.crypto.hpke;
import org.bouncycastle.crypto.Digest;
import org.bouncycastle.crypto.digests.SHA256Digest;
import org.bouncycastle.crypto.digests.SHA384Digest;
import org.bouncycastle.crypto.digests.SHA512Digest;
import org.bouncycastle.crypto.generators.HKDFBytesGenerator;
import org.bouncycastle.crypto.params.HKDFParameters;
import org.bouncycastle.util.Arrays;
import org.bouncycastle.util.Pack;
class HKDF
{
private final static String versionLabel = "HPKE-v1";
private final HKDFBytesGenerator kdf;
private final int hashLength;
HKDF(short kdfId)
{
Digest hash;
switch (kdfId)
{
case HPKE.kdf_HKDF_SHA256:
hash = new SHA256Digest();
break;
case HPKE.kdf_HKDF_SHA384:
hash = new SHA384Digest();
break;
case HPKE.kdf_HKDF_SHA512:
hash = new SHA512Digest();
break;
default:
throw new IllegalArgumentException("invalid kdf id");
}
kdf = new HKDFBytesGenerator(hash);
hashLength = hash.getDigestSize();
}
int getHashSize()
{
return hashLength;
}
// todo remove suiteID
protected byte[] LabeledExtract(byte[] salt, byte[] suiteID, String label, byte[] ikm)
{
if (salt == null)
{
salt = new byte[hashLength];
}
byte[] labeledIKM = Arrays.concatenate(versionLabel.getBytes(), suiteID, label.getBytes(), ikm);
return kdf.extractPRK(salt, labeledIKM);
}
protected byte[] LabeledExpand(byte[] prk, byte[] suiteID, String label, byte[] info, int L)
{
if (L > (1 << 16))
{
throw new IllegalArgumentException("Expand length cannot be larger than 2^16");
}
byte[] labeledInfo = Arrays.concatenate(Pack.shortToBigEndian((short)L), versionLabel.getBytes(), suiteID, label.getBytes());
kdf.init(HKDFParameters.skipExtractParameters(prk, Arrays.concatenate(labeledInfo, info)));
byte[] rv = new byte[L];
kdf.generateBytes(rv, 0, rv.length);
return rv;
}
protected byte[] Extract(byte[] salt, byte[] ikm)
{
if (salt == null)
{
salt = new byte[hashLength];
}
return kdf.extractPRK(salt, ikm);
}
protected byte[] Expand(byte[] prk, byte[] info, int L)
{
if (L > (1 << 16))
{
throw new IllegalArgumentException("Expand length cannot be larger than 2^16");
}
kdf.init(HKDFParameters.skipExtractParameters(prk, info));
byte[] rv = new byte[L];
kdf.generateBytes(rv, 0, rv.length);
return rv;
}
}