org.bouncycastle.crypto.hpke.HPKEContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk14 Show documentation
Show all versions of bcprov-ext-debug-jdk14 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 JDK 1.4. Note: this package includes the NTRU encryption algorithms.
package org.bouncycastle.crypto.hpke;
import org.bouncycastle.crypto.InvalidCipherTextException;
public class HPKEContext
{
protected final AEAD aead;
protected final HKDF hkdf;
protected final byte[] exporterSecret;
protected final byte[] suiteId;
HPKEContext(AEAD aead, HKDF hkdf, byte[] exporterSecret, byte[] suiteId)
{
this.aead = aead;
this.hkdf = hkdf;
this.exporterSecret = exporterSecret;
this.suiteId = suiteId;
}
public byte[] export(byte[] exportContext, int L)
{
return hkdf.LabeledExpand(exporterSecret, suiteId, "sec", exportContext, L);
}
public byte[] seal(byte[] aad, byte[] message)
throws InvalidCipherTextException
{
return aead.seal(aad, message);
}
public byte[] open(byte[] aad, byte[] ct)
throws InvalidCipherTextException
{
return aead.open(aad, ct);
}
}