up
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
|
||||
using System;
|
||||
|
||||
using Org.BouncyCastle.Security;
|
||||
|
||||
namespace Org.BouncyCastle.Crypto.Parameters
|
||||
{
|
||||
public class ElGamalKeyGenerationParameters
|
||||
: KeyGenerationParameters
|
||||
{
|
||||
private readonly ElGamalParameters parameters;
|
||||
|
||||
public ElGamalKeyGenerationParameters(
|
||||
SecureRandom random,
|
||||
ElGamalParameters parameters)
|
||||
: base(random, GetStrength(parameters))
|
||||
{
|
||||
this.parameters = parameters;
|
||||
}
|
||||
|
||||
public ElGamalParameters Parameters
|
||||
{
|
||||
get { return parameters; }
|
||||
}
|
||||
|
||||
internal static int GetStrength(
|
||||
ElGamalParameters parameters)
|
||||
{
|
||||
return parameters.L != 0 ? parameters.L : parameters.P.BitLength;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user