Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters.NaccacheSternKeyParameters C# (CSharp) Method

NaccacheSternKeyParameters() public method

public NaccacheSternKeyParameters ( bool privateKey, BigInteger g, BigInteger n, int lowerSigmaBound ) : System
privateKey bool
g Org.BouncyCastle.Math.BigInteger
n Org.BouncyCastle.Math.BigInteger
lowerSigmaBound int
return System
		public NaccacheSternKeyParameters(bool privateKey, BigInteger g, BigInteger n, int lowerSigmaBound)
			: base(privateKey)
		{
			this.g = g;
			this.n = n;
			this.lowerSigmaBound = lowerSigmaBound;
		}
NaccacheSternKeyParameters