diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-23 20:07:22 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-23 20:07:22 +0700 |
commit | 968f69ea71fe711d603968c6717cf7a33bcd8450 (patch) | |
tree | 161a9b63ff0d96e5610433becefeb56e10daafa3 /crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs | |
parent | Complete SecureRandom refactoring (diff) | |
download | BouncyCastle.NET-ed25519-968f69ea71fe711d603968c6717cf7a33bcd8450.tar.xz |
Various cleanup
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs b/crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs index d190c4ae9..33f251b76 100644 --- a/crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs +++ b/crypto/src/math/ec/custom/sec/SecP384R1FieldElement.cs @@ -115,7 +115,6 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec public override ECFieldElement Invert() { - //return new SecP384R1FieldElement(ToBigInteger().ModInverse(Q)); uint[] z = Nat.Create(12); SecP384R1Field.Inv(x, z); return new SecP384R1FieldElement(z); |