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.
38 lines
1.0 KiB
38 lines
1.0 KiB
using System;
|
|
|
|
using Org.BouncyCastle.Crypto.Parameters;
|
|
using Org.BouncyCastle.Math;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Generators
|
|
{
|
|
/**
|
|
* a basic Diffie-Hellman key pair generator.
|
|
*
|
|
* This generates keys consistent for use with the basic algorithm for
|
|
* Diffie-Hellman.
|
|
*/
|
|
public class DHBasicKeyPairGenerator
|
|
: IAsymmetricCipherKeyPairGenerator
|
|
{
|
|
private DHKeyGenerationParameters param;
|
|
|
|
public virtual void Init(
|
|
KeyGenerationParameters parameters)
|
|
{
|
|
this.param = (DHKeyGenerationParameters)parameters;
|
|
}
|
|
|
|
public virtual AsymmetricCipherKeyPair GenerateKeyPair()
|
|
{
|
|
DHKeyGeneratorHelper helper = DHKeyGeneratorHelper.Instance;
|
|
DHParameters dhp = param.Parameters;
|
|
|
|
BigInteger x = helper.CalculatePrivate(dhp, param.Random);
|
|
BigInteger y = helper.CalculatePublic(dhp, x);
|
|
|
|
return new AsymmetricCipherKeyPair(
|
|
new DHPublicKeyParameters(y, dhp),
|
|
new DHPrivateKeyParameters(x, dhp));
|
|
}
|
|
}
|
|
}
|
|
|