diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-02-17 17:44:25 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-02-17 17:44:25 +0700 |
commit | 9417631a8dec7b0b2acc3e3893b9c9c1dec07872 (patch) | |
tree | de83c51d3156576a07fb547a0947429d04a3d1b1 /crypto/src/math/ec/custom/sec/SecT409R1Point.cs | |
parent | Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.git (diff) | |
download | BouncyCastle.NET-ed25519-9417631a8dec7b0b2acc3e3893b9c9c1dec07872.tar.xz |
Clean up old comments in binary custom curve code
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecT409R1Point.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecT409R1Point.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecT409R1Point.cs b/crypto/src/math/ec/custom/sec/SecT409R1Point.cs index af69fe656..92f6143dc 100644 --- a/crypto/src/math/ec/custom/sec/SecT409R1Point.cs +++ b/crypto/src/math/ec/custom/sec/SecT409R1Point.cs @@ -131,7 +131,6 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec ECFieldElement Y2 = L2; ECFieldElement L = Y1.Add(Y2).Divide(X1); - //X3 = L.Square().Add(L).Add(X1).Add(curve.A); X3 = L.Square().Add(L).Add(X1).AddOne(); if (X3.IsZero) { @@ -237,10 +236,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec ECFieldElement Z1Sq = Z1.Square(); ECFieldElement L1Z1 = L1.Multiply(Z1); - //ECFieldElement T = curve.A.Multiply(Z1Sq).Add(L1Sq).Add(L1Z1); ECFieldElement T = Z1Sq.Add(L1Sq).Add(L1Z1); - ECFieldElement L2plus1 = L2.AddOne(); - //ECFieldElement A = curve.A.Add(L2plus1).Multiply(Z1Sq).Add(L1Sq).MultiplyPlusProduct(T, X1Sq, Z1Sq); ECFieldElement A = L2.Multiply(Z1Sq).Add(L1Sq).MultiplyPlusProduct(T, X1Sq, Z1Sq); ECFieldElement X2Z1Sq = X2.Multiply(Z1Sq); ECFieldElement B = X2Z1Sq.Add(T).Square(); @@ -260,7 +256,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec ECFieldElement X3 = A.Square().Multiply(X2Z1Sq); ECFieldElement Z3 = A.Multiply(B).Multiply(Z1Sq); - ECFieldElement L3 = A.Add(B).Square().MultiplyPlusProduct(T, L2plus1, Z3); + ECFieldElement L3 = A.Add(B).Square().MultiplyPlusProduct(T, L2.AddOne(), Z3); return new SecT409R1Point(curve, X3, L3, new ECFieldElement[] { Z3 }, IsCompressed); } |