summary refs log tree commit diff
path: root/crypto/src/math/ec/custom/sec/SecP192R1Curve.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-12-05 13:24:04 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-12-05 13:24:04 +0700
commit00721e6cd0c40535c58b734d33790245bafaba0d (patch)
treecb414158b44c89ce1e2186ec17469ce67a121208 /crypto/src/math/ec/custom/sec/SecP192R1Curve.cs
parentAdd TODO[api] (diff)
downloadBouncyCastle.NET-ed25519-00721e6cd0c40535c58b734d33790245bafaba0d.tar.xz
Refactor ECCurve primality checks
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP192R1Curve.cs')
-rw-r--r--crypto/src/math/ec/custom/sec/SecP192R1Curve.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP192R1Curve.cs b/crypto/src/math/ec/custom/sec/SecP192R1Curve.cs
index 77524b362..accb5a786 100644
--- a/crypto/src/math/ec/custom/sec/SecP192R1Curve.cs
+++ b/crypto/src/math/ec/custom/sec/SecP192R1Curve.cs
@@ -18,7 +18,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
         protected readonly SecP192R1Point m_infinity;
 
         public SecP192R1Curve()
-            : base(q, true)
+            : base(q, isInternal: true)
         {
             this.m_infinity = new SecP192R1Point(this, null, null);