1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs b/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs
index b347f8dbd..ee6ed8c99 100644
--- a/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs
+++ b/crypto/src/asn1/cryptopro/GOST3410ParamSetParameters.cs
@@ -53,7 +53,7 @@ namespace Org.BouncyCastle.Asn1.CryptoPro
if (seq.Count != 4)
throw new ArgumentException("Wrong number of elements in sequence", "seq");
- this.keySize = DerInteger.GetInstance(seq[0]).Value.IntValue;
+ this.keySize = DerInteger.GetInstance(seq[0]).IntValueExact;
this.p = DerInteger.GetInstance(seq[1]);
this.q = DerInteger.GetInstance(seq[2]);
this.a = DerInteger.GetInstance(seq[3]);
|