123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.Collections.Generic;
- using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math;
- namespace Best.HTTP.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<BigInteger> smallPrimes;
- /**
- * 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<BigInteger> smallPrimes,
- BigInteger phiN)
- : base(true, g, n, lowerSigmaBound)
- {
- this.smallPrimes = smallPrimes;
- this.phiN = phiN;
- }
- public BigInteger PhiN
- {
- get { return phiN; }
- }
- public IList<BigInteger> SmallPrimesList
- {
- get { return smallPrimes; }
- }
- }
- }
- #pragma warning restore
- #endif
|