培训考核三期,新版培训,网页版培训登录器
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.
 
 

78 lines
2.3 KiB

#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 DsaParameterGenerationParameters
{
public const int DigitalSignatureUsage = 1;
public const int KeyEstablishmentUsage = 2;
private readonly int l;
private readonly int n;
private readonly int certainty;
private readonly SecureRandom random;
private readonly int usageIndex;
/**
* Construct without a usage index, this will do a random construction of G.
*
* @param L desired length of prime P in bits (the effective key size).
* @param N desired length of prime Q in bits.
* @param certainty certainty level for prime number generation.
* @param random the source of randomness to use.
*/
public DsaParameterGenerationParameters(int L, int N, int certainty, SecureRandom random)
: this(L, N, certainty, random, -1)
{
}
/**
* Construct for a specific usage index - this has the effect of using verifiable canonical generation of G.
*
* @param L desired length of prime P in bits (the effective key size).
* @param N desired length of prime Q in bits.
* @param certainty certainty level for prime number generation.
* @param random the source of randomness to use.
* @param usageIndex a valid usage index.
*/
public DsaParameterGenerationParameters(int L, int N, int certainty, SecureRandom random, int usageIndex)
{
this.l = L;
this.n = N;
this.certainty = certainty;
this.random = random;
this.usageIndex = usageIndex;
}
public virtual int L
{
get { return l; }
}
public virtual int N
{
get { return n; }
}
public virtual int UsageIndex
{
get { return usageIndex; }
}
public virtual int Certainty
{
get { return certainty; }
}
public virtual SecureRandom Random
{
get { return random; }
}
}
}
#pragma warning restore
#endif