summary refs log tree commit diff
path: root/crypto/src/math
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2022-03-23 15:12:05 +1100
committerDavid Hook <dgh@cryptoworkshop.com>2022-03-23 15:12:05 +1100
commitd2c21efe437d17d375cbe81d0d2c3968cfab44c7 (patch)
tree4c0c2a2f98b66a42d3256d6936aa6fd2f5dc0214 /crypto/src/math
parentadded RSA/EC checks (diff)
downloadBouncyCastle.NET-ed25519-d2c21efe437d17d375cbe81d0d2c3968cfab44c7.tar.xz
minor corrections, updated ECPointTest
Diffstat (limited to 'crypto/src/math')
-rw-r--r--crypto/src/math/ec/ECCurve.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/crypto/src/math/ec/ECCurve.cs b/crypto/src/math/ec/ECCurve.cs
index 2b193ba06..3861dc4cb 100644
--- a/crypto/src/math/ec/ECCurve.cs
+++ b/crypto/src/math/ec/ECCurve.cs
@@ -700,9 +700,12 @@ namespace Org.BouncyCastle.Math.EC
             if (isInternal)
             {
                 this.m_q = q;
-                knownQs.add(q);
+                if (!knownQs.Contains(q))
+                {
+                    knownQs.Add(q, q);
+                }
             }
-            else if (knownQs.contains(q))
+            else if (knownQs.Contains(q))
             {
                 this.m_q = q;
             }
@@ -718,7 +721,7 @@ namespace Org.BouncyCastle.Math.EC
                 }
 
                 if (Primes.HasAnySmallFactors(q) || !Primes.IsMRProbablePrime(
-                    q, random, getNumberOfIterations(qBitLength, certainty)))
+                    q, random, GetNumberOfIterations(qBitLength, certainty)))
                 {
                     throw new ArgumentException("Fp q value not prime");
                 }