summary refs log tree commit diff
path: root/crypto/src/math/ec/custom/sec/SecP224K1Point.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP224K1Point.cs')
-rw-r--r--crypto/src/math/ec/custom/sec/SecP224K1Point.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP224K1Point.cs b/crypto/src/math/ec/custom/sec/SecP224K1Point.cs
index f85c64981..c7119401d 100644
--- a/crypto/src/math/ec/custom/sec/SecP224K1Point.cs
+++ b/crypto/src/math/ec/custom/sec/SecP224K1Point.cs
@@ -205,12 +205,11 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
 
             uint[] S = Y1Squared;
             SecP224K1Field.Multiply(Y1Squared, X1.x, S);
-            SecP224K1Field.Twice(S, S);
-            SecP224K1Field.Twice(S, S);
+            uint c = Nat.ShiftUpBits(7, S, 2, 0);
+            SecP224K1Field.Reduce32(c, S);
 
-            SecP224K1Field.Twice(T, t1);
-            SecP224K1Field.Twice(t1, t1);
-            SecP224K1Field.Twice(t1, t1);
+            c = Nat.ShiftUpBits(7, T, 3, 0, t1);
+            SecP224K1Field.Reduce32(c, t1);
 
             SecP224K1FieldElement X3 = new SecP224K1FieldElement(T);
             SecP224K1Field.Square(M, X3.x);