org.bouncycastle.pqc.crypto.cmce.CMCEKEMExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15to18 Show documentation
Show all versions of bcprov-jdk15to18 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.5 to JDK 1.8.
package org.bouncycastle.pqc.crypto.cmce;
import org.bouncycastle.crypto.EncapsulatedSecretExtractor;
public class CMCEKEMExtractor
implements EncapsulatedSecretExtractor
{
private CMCEEngine engine;
private CMCEKeyParameters key;
public CMCEKEMExtractor(CMCEPrivateKeyParameters privParams)
{
this.key = privParams;
initCipher(key.getParameters());
}
private void initCipher(CMCEParameters param)
{
engine = param.getEngine();
CMCEPrivateKeyParameters privateParams = (CMCEPrivateKeyParameters)key;
if(privateParams.getPrivateKey().length < engine.getPrivateKeySize())
{
key = new CMCEPrivateKeyParameters(privateParams.getParameters(), engine.decompress_private_key(privateParams.getPrivateKey()));
}
}
public byte[] extractSecret(byte[] encapsulation)
{
return extractSecret(encapsulation, engine.getDefaultSessionKeySize());
}
public byte[] extractSecret(byte[] encapsulation, int sessionKeySizeInBits)
{
byte[] session_key = new byte[sessionKeySizeInBits / 8];
engine.kem_dec(session_key, encapsulation, ((CMCEPrivateKeyParameters)key).getPrivateKey());
return session_key;
}
public int getEncapsulationLength()
{
return engine.getCipherTextSize();
}
}