36 lines
850 B
C#
36 lines
850 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
|
|
{
|
|
public class DHKeyGenerationParameters
|
|
: KeyGenerationParameters
|
|
{
|
|
private readonly DHParameters parameters;
|
|
|
|
public DHKeyGenerationParameters(
|
|
SecureRandom random,
|
|
DHParameters parameters)
|
|
: base(random, GetStrength(parameters))
|
|
{
|
|
this.parameters = parameters;
|
|
}
|
|
|
|
public DHParameters Parameters
|
|
{
|
|
get { return parameters; }
|
|
}
|
|
|
|
internal static int GetStrength(
|
|
DHParameters parameters)
|
|
{
|
|
return parameters.L != 0 ? parameters.L : parameters.P.BitLength;
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|