You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
using System;
|
|
|
|
using Org.BouncyCastle.Crypto.Parameters;
|
|
using Org.BouncyCastle.Math;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Generators
|
|
{
|
|
/**
|
|
* a ElGamal key pair generator.
|
|
* <p>
|
|
* This Generates keys consistent for use with ElGamal as described in
|
|
* page 164 of "Handbook of Applied Cryptography".</p>
|
|
*/
|
|
public class ElGamalKeyPairGenerator
|
|
: IAsymmetricCipherKeyPairGenerator
|
|
{
|
|
private ElGamalKeyGenerationParameters param;
|
|
|
|
public void Init(
|
|
KeyGenerationParameters parameters)
|
|
{
|
|
this.param = (ElGamalKeyGenerationParameters) parameters;
|
|
}
|
|
|
|
public AsymmetricCipherKeyPair GenerateKeyPair()
|
|
{
|
|
DHKeyGeneratorHelper helper = DHKeyGeneratorHelper.Instance;
|
|
ElGamalParameters egp = param.Parameters;
|
|
DHParameters dhp = new DHParameters(egp.P, egp.G, null, 0, egp.L);
|
|
|
|
BigInteger x = helper.CalculatePrivate(dhp, param.Random);
|
|
BigInteger y = helper.CalculatePublic(dhp, x);
|
|
|
|
return new AsymmetricCipherKeyPair(
|
|
new ElGamalPublicKeyParameters(y, egp),
|
|
new ElGamalPrivateKeyParameters(x, egp));
|
|
}
|
|
}
|
|
|
|
}
|
|
|