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-lts8on Show documentation
Show all versions of bcprov-lts8on Show documentation
The Long Term Stable (LTS) Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains the JCA/JCE provider and low-level API for the BC LTS version 2.73.7 for Java 8 and later.
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);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy