org.bouncycastle.pqc.crypto.bike.BIKEKEMExtractor 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.pqc.crypto.bike;
import org.bouncycastle.crypto.EncapsulatedSecretExtractor;
import org.bouncycastle.util.Arrays;
public class BIKEKEMExtractor
implements EncapsulatedSecretExtractor
{
private BIKEEngine engine;
private BIKEKeyParameters key;
public BIKEKEMExtractor(BIKEPrivateKeyParameters privParams)
{
this.key = privParams;
initCipher(key.getParameters());
}
private void initCipher(BIKEParameters param)
{
engine = param.getEngine();
}
public byte[] extractSecret(byte[] encapsulation)
{
byte[] session_key = new byte[engine.getSessionKeySize()];
BIKEPrivateKeyParameters secretKey = (BIKEPrivateKeyParameters)key;
// Extract c0, c1 from encapsulation c
byte[] c0 = Arrays.copyOfRange(encapsulation, 0, secretKey.getParameters().getRByte());
byte[] c1 = Arrays.copyOfRange(encapsulation, secretKey.getParameters().getRByte(), encapsulation.length);
byte[] h0 = secretKey.getH0();
byte[] h1 = secretKey.getH1();
byte[] sigma = secretKey.getSigma();
engine.decaps(session_key, h0, h1, sigma, c0, c1);
return Arrays.copyOfRange(session_key, 0, key.getParameters().getSessionKeySize() / 8);
}
public int getEncapsulationLength()
{
return key.getParameters().getRByte() + key.getParameters().getLByte();
}
}