84 lines
2.1 KiB
C#
84 lines
2.1 KiB
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
using System.Collections;
|
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
|
|
{
|
|
/**
|
|
* Private key parameters for NaccacheStern cipher. For details on this cipher,
|
|
* please see
|
|
*
|
|
* http://www.gemplus.com/smart/rd/publications/pdf/NS98pkcs.pdf
|
|
*/
|
|
public class NaccacheSternPrivateKeyParameters : NaccacheSternKeyParameters
|
|
{
|
|
private readonly BigInteger phiN;
|
|
private readonly IList smallPrimes;
|
|
|
|
#if !(SILVERLIGHT || PORTABLE || NETFX_CORE)
|
|
[Obsolete]
|
|
public NaccacheSternPrivateKeyParameters(
|
|
BigInteger g,
|
|
BigInteger n,
|
|
int lowerSigmaBound,
|
|
ArrayList smallPrimes,
|
|
BigInteger phiN)
|
|
: base(true, g, n, lowerSigmaBound)
|
|
{
|
|
this.smallPrimes = smallPrimes;
|
|
this.phiN = phiN;
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* Constructs a NaccacheSternPrivateKey
|
|
*
|
|
* @param g
|
|
* the public enryption parameter g
|
|
* @param n
|
|
* the public modulus n = p*q
|
|
* @param lowerSigmaBound
|
|
* the public lower sigma bound up to which data can be encrypted
|
|
* @param smallPrimes
|
|
* the small primes, of which sigma is constructed in the right
|
|
* order
|
|
* @param phi_n
|
|
* the private modulus phi(n) = (p-1)(q-1)
|
|
*/
|
|
public NaccacheSternPrivateKeyParameters(
|
|
BigInteger g,
|
|
BigInteger n,
|
|
int lowerSigmaBound,
|
|
IList smallPrimes,
|
|
BigInteger phiN)
|
|
: base(true, g, n, lowerSigmaBound)
|
|
{
|
|
this.smallPrimes = smallPrimes;
|
|
this.phiN = phiN;
|
|
}
|
|
|
|
public BigInteger PhiN
|
|
{
|
|
get { return phiN; }
|
|
}
|
|
|
|
#if !(SILVERLIGHT || PORTABLE || NETFX_CORE)
|
|
[Obsolete("Use 'SmallPrimesList' instead")]
|
|
public ArrayList SmallPrimes
|
|
{
|
|
get { return new ArrayList(smallPrimes); }
|
|
}
|
|
#endif
|
|
|
|
public IList SmallPrimesList
|
|
{
|
|
get { return smallPrimes; }
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|