1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/src/math/ec/custom/gm/SM2P256V1Curve.cs b/crypto/src/math/ec/custom/gm/SM2P256V1Curve.cs
index 86c8efaf7..4978a2beb 100644
--- a/crypto/src/math/ec/custom/gm/SM2P256V1Curve.cs
+++ b/crypto/src/math/ec/custom/gm/SM2P256V1Curve.cs
@@ -8,8 +8,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.GM
internal class SM2P256V1Curve
: AbstractFpCurve
{
- public static readonly BigInteger q = new BigInteger(1,
- Hex.Decode("FFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF"));
+ public static readonly BigInteger q = SM2P256V1FieldElement.Q;
private const int SM2P256V1_DEFAULT_COORDS = COORD_JACOBIAN;
private const int SM2P256V1_FE_INTS = 8;
|