diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-29 14:47:53 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-29 14:47:53 +0700 |
commit | beba3f6941c540af864926f8de9c3a5a8a703983 (patch) | |
tree | 23709b363b0e6a179bad32e6a313b530d954024d /crypto/src/math/ec/abc/Tnaf.cs | |
parent | Tnaf perf. opts. (diff) | |
download | BouncyCastle.NET-ed25519-beba3f6941c540af864926f8de9c3a5a8a703983.tar.xz |
Koblitz curve perf. opts.
Diffstat (limited to 'crypto/src/math/ec/abc/Tnaf.cs')
-rw-r--r-- | crypto/src/math/ec/abc/Tnaf.cs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/crypto/src/math/ec/abc/Tnaf.cs b/crypto/src/math/ec/abc/Tnaf.cs index cd3e90f46..944f0e229 100644 --- a/crypto/src/math/ec/abc/Tnaf.cs +++ b/crypto/src/math/ec/abc/Tnaf.cs @@ -722,7 +722,7 @@ namespace Org.BouncyCastle.Math.EC.Abc int i = 0; // while lambda <> (0, 0) - while (!(r0.Equals(BigInteger.Zero) && r1.Equals(BigInteger.Zero))) + while ((r0.SignValue | r1.SignValue) != 0) { // if r0 is odd if (r0.TestBit(0)) @@ -802,7 +802,20 @@ namespace Org.BouncyCastle.Math.EC.Abc if (existing is PartModPreCompInfo) return existing; - var lucas = GetLucas(m_mu, m_curve.FieldSize, m_doV)[1]; + BigInteger lucas; + if (m_curve.IsKoblitz) + { + /* + * Jerome A. Solinas, "Improved Algorithms for Arithmetic on Anomalous Binary Curves", (21). + */ + lucas = BigInteger.One.ShiftLeft(m_curve.FieldSize).Add(BigInteger.One).Subtract( + m_curve.Order.Multiply(m_curve.Cofactor)); + } + else + { + lucas = GetLucas(m_mu, m_curve.FieldSize, m_doV)[1]; + } + var si = GetSi(m_curve); return new PartModPreCompInfo(lucas, si[0], si[1]); |