summary refs log tree commit diff
path: root/crypto/src/math/ec/custom/sec/SecP256R1Curve.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-01-24 15:40:33 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-01-24 15:40:33 +0700
commitecb5c21a39c61a95d901379938e6f4f3d7d44df3 (patch)
treee5d567e7b3f9003aa4ab5b52cabf4bdd3005aeea /crypto/src/math/ec/custom/sec/SecP256R1Curve.cs
parentMark registered brainpool curves internal (diff)
downloadBouncyCastle.NET-ed25519-ecb5c21a39c61a95d901379938e6f4f3d7d44df3.tar.xz
Mark custom curves internal
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP256R1Curve.cs')
-rw-r--r--crypto/src/math/ec/custom/sec/SecP256R1Curve.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP256R1Curve.cs b/crypto/src/math/ec/custom/sec/SecP256R1Curve.cs
index 7a5cec8b3..dd2b964c6 100644
--- a/crypto/src/math/ec/custom/sec/SecP256R1Curve.cs
+++ b/crypto/src/math/ec/custom/sec/SecP256R1Curve.cs
@@ -18,7 +18,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
         protected readonly SecP256R1Point m_infinity;
 
         public SecP256R1Curve()
-            : base(q)
+            : base(q, true)
         {
             this.m_infinity = new SecP256R1Point(this, null, null);