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