1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecT571K1Point.cs b/crypto/src/math/ec/custom/sec/SecT571K1Point.cs
index f92370f87..deaaf0c74 100644
--- a/crypto/src/math/ec/custom/sec/SecT571K1Point.cs
+++ b/crypto/src/math/ec/custom/sec/SecT571K1Point.cs
@@ -131,7 +131,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
ECFieldElement Y2 = L2;
ECFieldElement L = Y1.Add(Y2).Divide(X1);
- X3 = L.Square().Add(L).Add(X1).AddOne();
+ X3 = L.Square().Add(L).Add(X1);
if (X3.IsZero)
{
return new SecT571K1Point(curve, X3, curve.B, IsCompressed);
|