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/crypto.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/crypto.csproj')
-rw-r--r-- | crypto/crypto.csproj | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/crypto.csproj b/crypto/crypto.csproj index 4115560c4..7ab780b62 100644 --- a/crypto/crypto.csproj +++ b/crypto/crypto.csproj @@ -5509,6 +5509,11 @@ BuildAction = "Compile" /> <File + RelPath = "src\math\ec\ECLookupTable.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "src\math\ec\ECPoint.cs" SubType = "Code" BuildAction = "Compile" @@ -5534,6 +5539,11 @@ BuildAction = "Compile" /> <File + RelPath = "src\math\ec\SimpleLookupTable.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "src\math\ec\abc\SimpleBigDecimal.cs" SubType = "Code" BuildAction = "Compile" @@ -12325,6 +12335,11 @@ BuildAction = "Compile" /> <File + RelPath = "test\src\math\ec\test\FixedPointTest.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "test\src\math\ec\test\TnafTest.cs" SubType = "Code" BuildAction = "Compile" |