org.bouncycastle.pqc.crypto.sike.SIKEKeyPairGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-debug-jdk15to18 Show documentation
Show all versions of bcprov-debug-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.sike;
import java.security.SecureRandom;
import org.bouncycastle.crypto.AsymmetricCipherKeyPair;
import org.bouncycastle.crypto.AsymmetricCipherKeyPairGenerator;
import org.bouncycastle.crypto.CryptoServicePurpose;
import org.bouncycastle.crypto.CryptoServicesRegistrar;
import org.bouncycastle.crypto.KeyGenerationParameters;
import org.bouncycastle.crypto.constraints.DefaultServiceProperties;
public class SIKEKeyPairGenerator
implements AsymmetricCipherKeyPairGenerator
{
private SIKEKeyGenerationParameters sikeParams;
private SecureRandom random;
private void initialize(KeyGenerationParameters param)
{
this.sikeParams = (SIKEKeyGenerationParameters) param;
this.random = param.getRandom();
}
private AsymmetricCipherKeyPair genKeyPair()
{
// -DM System.err.println
System.err.println("WARNING: the SIKE algorithm is only for research purposes, insecure");
CryptoServicesRegistrar.checkConstraints(new DefaultServiceProperties("SIKEKeyGen", 0, sikeParams.getParameters(), CryptoServicePurpose.KEYGEN));
SIKEEngine engine = sikeParams.getParameters().getEngine();
byte[] sk = new byte[engine.getPrivateKeySize()];
byte[] pk = new byte[engine.getPublicKeySize()];
engine.crypto_kem_keypair(pk, sk, random);
SIKEPublicKeyParameters pubKey = new SIKEPublicKeyParameters(sikeParams.getParameters(), pk);
SIKEPrivateKeyParameters privKey = new SIKEPrivateKeyParameters(sikeParams.getParameters(), sk);
return new AsymmetricCipherKeyPair(pubKey, privKey);
}
public void init(KeyGenerationParameters param)
{
this.initialize(param);
}
public AsymmetricCipherKeyPair generateKeyPair()
{
return genKeyPair();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy