diff options
author | David Hook <dgh@bouncycastle.org> | 2019-01-20 11:17:35 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2019-01-20 11:17:35 +1100 |
commit | aa29930511ac310a724e0e1fc13fa4dea2558953 (patch) | |
tree | ac3f4f7641405a5980080edf624f49524ece3f31 /crypto/src/security/PublicKeyFactory.cs | |
parent | Selecting digest. (diff) | |
download | BouncyCastle.NET-ed25519-aa29930511ac310a724e0e1fc13fa4dea2558953.tar.xz |
minor tweaking
Diffstat (limited to 'crypto/src/security/PublicKeyFactory.cs')
-rw-r--r-- | crypto/src/security/PublicKeyFactory.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/security/PublicKeyFactory.cs b/crypto/src/security/PublicKeyFactory.cs index 3623c3ee2..7a34d71df 100644 --- a/crypto/src/security/PublicKeyFactory.cs +++ b/crypto/src/security/PublicKeyFactory.cs @@ -261,8 +261,8 @@ namespace Org.BouncyCastle.Security Gost3410PublicKeyAlgParameters gostParams = Gost3410PublicKeyAlgParameters.GetInstance(keyInfo.AlgorithmID.Parameters); - ECGOST3410Parameters ecDomainParameters = - new ECGOST3410Parameters( + ECGost3410Parameters ecDomainParameters = + new ECGost3410Parameters( new ECNamedDomainParameters(gostParams.PublicKeyParamSet, ECGost3410NamedCurves.GetByOid(gostParams.PublicKeyParamSet)), gostParams.PublicKeyParamSet, gostParams.DigestParamSet, |