diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-04-15 21:12:11 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-04-15 21:12:11 +0700 |
commit | d79a501212d4012139c714e361577669c75171aa (patch) | |
tree | f78e8c7d34c9448698e17bc341fd8d293814dd3e /crypto/BouncyCastle.Android.csproj | |
parent | Update Readme.html for SHA-3 perf. opts. (diff) | |
download | BouncyCastle.NET-ed25519-d79a501212d4012139c714e361577669c75171aa.tar.xz |
Cache-safety for EC lookup tables
- creation of cache-safe lookup tables delegated to ECCurve - FixedPointCombMultiplier uses cache-safe lookup table - FixedPointCombMultiplier avoids BigInteger.TestBit
Diffstat (limited to 'crypto/BouncyCastle.Android.csproj')
-rw-r--r-- | crypto/BouncyCastle.Android.csproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/BouncyCastle.Android.csproj b/crypto/BouncyCastle.Android.csproj index 59674d676..7ef2027ee 100644 --- a/crypto/BouncyCastle.Android.csproj +++ b/crypto/BouncyCastle.Android.csproj @@ -1130,11 +1130,13 @@ <Compile Include="src\math\ec\ECAlgorithms.cs" /> <Compile Include="src\math\ec\ECCurve.cs" /> <Compile Include="src\math\ec\ECFieldElement.cs" /> + <Compile Include="src\math\ec\ECLookupTable.cs" /> <Compile Include="src\math\ec\ECPoint.cs" /> <Compile Include="src\math\ec\ECPointMap.cs" /> <Compile Include="src\math\ec\LongArray.cs" /> <Compile Include="src\math\ec\ScaleXPointMap.cs" /> <Compile Include="src\math\ec\ScaleYPointMap.cs" /> + <Compile Include="src\math\ec\SimpleLookupTable.cs" /> <Compile Include="src\math\ec\abc\SimpleBigDecimal.cs" /> <Compile Include="src\math\ec\abc\Tnaf.cs" /> <Compile Include="src\math\ec\abc\ZTauElement.cs" /> |