summary refs log tree commit diff
path: root/crypto/src/math/ec/custom/sec/SecT283FieldElement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecT283FieldElement.cs')
-rw-r--r--crypto/src/math/ec/custom/sec/SecT283FieldElement.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecT283FieldElement.cs b/crypto/src/math/ec/custom/sec/SecT283FieldElement.cs
index 6bd720acd..2eee80fb7 100644
--- a/crypto/src/math/ec/custom/sec/SecT283FieldElement.cs
+++ b/crypto/src/math/ec/custom/sec/SecT283FieldElement.cs
@@ -132,7 +132,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
             ulong[] xx = ((SecT283FieldElement)x).x, yx = ((SecT283FieldElement)y).x;
 
             ulong[] tt = Nat.Create64(9);
-            SecT283Field.SquareAddToExt(ax, tt);
+            SecT283Field.SquareExt(ax, tt);
             SecT283Field.MultiplyAddToExt(xx, yx, tt);
 
             ulong[] z = Nat320.Create64();