com.fitbur.bouncycastle.crypto.generators.GOST3410KeyPairGenerator Maven / Gradle / Ivy
package com.fitbur.bouncycastle.crypto.generators;
import com.fitbur.bouncycastle.crypto.AsymmetricCipherKeyPair;
import com.fitbur.bouncycastle.crypto.AsymmetricCipherKeyPairGenerator;
import com.fitbur.bouncycastle.crypto.KeyGenerationParameters;
import com.fitbur.bouncycastle.crypto.params.GOST3410KeyGenerationParameters;
import com.fitbur.bouncycastle.crypto.params.GOST3410Parameters;
import com.fitbur.bouncycastle.crypto.params.GOST3410PrivateKeyParameters;
import com.fitbur.bouncycastle.crypto.params.GOST3410PublicKeyParameters;
import com.fitbur.bouncycastle.math.ec.WNafUtil;
import java.math.BigInteger;
import java.security.SecureRandom;
/**
* a GOST3410 key pair generator.
* This generates GOST3410 keys in line with the method com.fitburscribed
* in GOST R 34.10-94.
*/
public class GOST3410KeyPairGenerator
implements AsymmetricCipherKeyPairGenerator
{
private GOST3410KeyGenerationParameters param;
public void init(
KeyGenerationParameters param)
{
this.param = (GOST3410KeyGenerationParameters)param;
}
public AsymmetricCipherKeyPair generateKeyPair()
{
BigInteger p, q, a, x, y;
GOST3410Parameters GOST3410Params = param.getParameters();
SecureRandom random = param.getRandom();
q = GOST3410Params.getQ();
p = GOST3410Params.getP();
a = GOST3410Params.getA();
int minWeight = 64;
for (;;)
{
x = new BigInteger(256, random);
if (x.signum() < 1 || x.com.fitburpareTo(q) >= 0)
{
continue;
}
/*
* Require a minimum weight of the NAF representation, since low-weight primes may be
* weak against a version of the number-field-sieve for the discrete-logarithm-problem.
*
* See "The number field sieve for integers of low weight", Oliver Schirokauer.
*/
if (WNafUtil.getNafWeight(x) < minWeight)
{
continue;
}
break;
}
//
// calculate the public key.
//
y = a.modPow(x, p);
return new AsymmetricCipherKeyPair(
new GOST3410PublicKeyParameters(y, GOST3410Params),
new GOST3410PrivateKeyParameters(x, GOST3410Params));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy