diff options
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP192K1Curve.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecP192K1Curve.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP192K1Curve.cs b/crypto/src/math/ec/custom/sec/SecP192K1Curve.cs index 62e253dc5..6647ebab9 100644 --- a/crypto/src/math/ec/custom/sec/SecP192K1Curve.cs +++ b/crypto/src/math/ec/custom/sec/SecP192K1Curve.cs @@ -8,8 +8,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec internal class SecP192K1Curve : AbstractFpCurve { - public static readonly BigInteger q = new BigInteger(1, - Hex.Decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFEE37")); + public static readonly BigInteger q = SecP192K1FieldElement.Q; private const int SECP192K1_DEFAULT_COORDS = COORD_JACOBIAN; private const int SECP192K1_FE_INTS = 6; |