diff options
Diffstat (limited to 'crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs')
-rw-r--r-- | crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs b/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs index c82e4248a..ae0cd4f83 100644 --- a/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs +++ b/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs @@ -27,11 +27,7 @@ namespace Org.BouncyCastle.Asn1.CryptoPro throw new ArgumentException("Invalid GOST3410Parameter: " + Platform.GetTypeName(obj)); } - public Gost3410ParamSetParameters( - int keySize, - BigInteger p, - BigInteger q, - BigInteger a) + public Gost3410ParamSetParameters(int keySize, BigInteger p, BigInteger q, BigInteger a) { this.keySize = keySize; this.p = new DerInteger(p); @@ -39,8 +35,7 @@ namespace Org.BouncyCastle.Asn1.CryptoPro this.a = new DerInteger(a); } - private Gost3410ParamSetParameters( - Asn1Sequence seq) + private Gost3410ParamSetParameters(Asn1Sequence seq) { if (seq.Count != 4) throw new ArgumentException("Wrong number of elements in sequence", "seq"); |