summary refs log tree commit diff
path: root/crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs')
-rw-r--r--crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs13
1 files changed, 4 insertions, 9 deletions
diff --git a/crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs b/crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs
index c6ea26204..40b69428d 100644
--- a/crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs
+++ b/crypto/src/asn1/cryptopro/GOST3410PublicKeyAlgParameters.cs
@@ -1,7 +1,5 @@
 using System;
 
-using Org.BouncyCastle.Utilities;
-
 namespace Org.BouncyCastle.Asn1.CryptoPro
 {
     public class Gost3410PublicKeyAlgParameters
@@ -11,20 +9,17 @@ namespace Org.BouncyCastle.Asn1.CryptoPro
         private DerObjectIdentifier	digestParamSet;
         private DerObjectIdentifier	encryptionParamSet;
 
-		public static Gost3410PublicKeyAlgParameters GetInstance(
-            Asn1TaggedObject	obj,
-            bool				explicitly)
+		public static Gost3410PublicKeyAlgParameters GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
         {
-            return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
+            return GetInstance(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
         }
 
-		public static Gost3410PublicKeyAlgParameters GetInstance(
-            object obj)
+		public static Gost3410PublicKeyAlgParameters GetInstance(object obj)
         {
             if (obj == null || obj is Gost3410PublicKeyAlgParameters)
                 return (Gost3410PublicKeyAlgParameters)obj;
 
-            return new Gost3410PublicKeyAlgParameters(Asn1Sequence.GetInstance((obj)));
+            return new Gost3410PublicKeyAlgParameters(Asn1Sequence.GetInstance(obj));
         }
 
 		public Gost3410PublicKeyAlgParameters(