diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-01-24 15:40:33 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-01-24 15:40:33 +0700 |
commit | ecb5c21a39c61a95d901379938e6f4f3d7d44df3 (patch) | |
tree | e5d567e7b3f9003aa4ab5b52cabf4bdd3005aeea /crypto/src/math/ec/custom/sec/SecP384R1Curve.cs | |
parent | Mark registered brainpool curves internal (diff) | |
download | BouncyCastle.NET-ed25519-ecb5c21a39c61a95d901379938e6f4f3d7d44df3.tar.xz |
Mark custom curves internal
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP384R1Curve.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecP384R1Curve.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP384R1Curve.cs b/crypto/src/math/ec/custom/sec/SecP384R1Curve.cs index 242b73fc6..f54dd44c2 100644 --- a/crypto/src/math/ec/custom/sec/SecP384R1Curve.cs +++ b/crypto/src/math/ec/custom/sec/SecP384R1Curve.cs @@ -18,7 +18,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec protected readonly SecP384R1Point m_infinity; public SecP384R1Curve() - : base(q) + : base(q, true) { this.m_infinity = new SecP384R1Point(this, null, null); |