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