diff options
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecT113FieldElement.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecT113FieldElement.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecT113FieldElement.cs b/crypto/src/math/ec/custom/sec/SecT113FieldElement.cs index 63de2b88c..1f08af0db 100644 --- a/crypto/src/math/ec/custom/sec/SecT113FieldElement.cs +++ b/crypto/src/math/ec/custom/sec/SecT113FieldElement.cs @@ -132,7 +132,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec ulong[] xx = ((SecT113FieldElement)x).x, yx = ((SecT113FieldElement)y).x; ulong[] tt = Nat128.CreateExt64(); - SecT113Field.SquareAddToExt(ax, tt); + SecT113Field.SquareExt(ax, tt); SecT113Field.MultiplyAddToExt(xx, yx, tt); ulong[] z = Nat128.Create64(); |