12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Crypto.Parameters;
- using Org.BouncyCastle.Math;
- using Org.BouncyCastle.Math.EC.Multiplier;
- using Org.BouncyCastle.Security;
- using Org.BouncyCastle.Utilities;
- namespace Org.BouncyCastle.Crypto.Generators
- {
- class DHKeyGeneratorHelper
- {
- internal static readonly DHKeyGeneratorHelper Instance = new DHKeyGeneratorHelper();
- private DHKeyGeneratorHelper()
- {
- }
- internal BigInteger CalculatePrivate(
- DHParameters dhParams,
- SecureRandom random)
- {
- int limit = dhParams.L;
- if (limit != 0)
- {
- int minWeight = limit >> 2;
- for (;;)
- {
- BigInteger x = new BigInteger(limit, random).SetBit(limit - 1);
- if (WNafUtilities.GetNafWeight(x) >= minWeight)
- {
- return x;
- }
- }
- }
- BigInteger min = BigInteger.Two;
- int m = dhParams.M;
- if (m != 0)
- {
- min = BigInteger.One.ShiftLeft(m - 1);
- }
- BigInteger q = dhParams.Q;
- if (q == null)
- {
- q = dhParams.P;
- }
- BigInteger max = q.Subtract(BigInteger.Two);
- {
- int minWeight = max.BitLength >> 2;
- for (;;)
- {
- BigInteger x = BigIntegers.CreateRandomInRange(min, max, random);
- if (WNafUtilities.GetNafWeight(x) >= minWeight)
- {
- return x;
- }
- }
- }
- }
- internal BigInteger CalculatePublic(
- DHParameters dhParams,
- BigInteger x)
- {
- return dhParams.G.ModPow(x, dhParams.P);
- }
- }
- }
- #endif
|