summary refs log tree commit diff
path: root/crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-10-23 20:07:22 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-10-23 20:07:22 +0700
commit968f69ea71fe711d603968c6717cf7a33bcd8450 (patch)
tree161a9b63ff0d96e5610433becefeb56e10daafa3 /crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs
parentComplete SecureRandom refactoring (diff)
downloadBouncyCastle.NET-ed25519-968f69ea71fe711d603968c6717cf7a33bcd8450.tar.xz
Various cleanup
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs')
-rw-r--r--crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs b/crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs
index 795fe3b2e..9237c0778 100644
--- a/crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs
+++ b/crypto/src/math/ec/custom/sec/SecP160R2FieldElement.cs
@@ -115,7 +115,6 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
 
         public override ECFieldElement Invert()
         {
-    //        return new SecP160R2FieldElement(ToBigInteger().modInverse(Q));
             uint[] z = Nat160.Create();
             SecP160R2Field.Inv(x, z);
             return new SecP160R2FieldElement(z);