1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP224K1Curve.cs b/crypto/src/math/ec/custom/sec/SecP224K1Curve.cs
index 859cb8526..ce56fbf52 100644
--- a/crypto/src/math/ec/custom/sec/SecP224K1Curve.cs
+++ b/crypto/src/math/ec/custom/sec/SecP224K1Curve.cs
@@ -8,8 +8,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
internal class SecP224K1Curve
: AbstractFpCurve
{
- public static readonly BigInteger q = new BigInteger(1,
- Hex.Decode("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFE56D"));
+ public static readonly BigInteger q = SecP224K1FieldElement.Q;
private const int SECP224K1_DEFAULT_COORDS = COORD_JACOBIAN;
private const int SECP224K1_FE_INTS = 7;
|