diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-04-17 10:41:26 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-04-17 10:41:26 +0700 |
commit | bd1f720cafbcbf30891a286718ee91c44e1c8a4e (patch) | |
tree | 5b5a25fd08f0755ef23fb55b61162b45dfed2b42 /crypto/crypto.csproj | |
parent | Cache-safety for EC lookup tables (diff) | |
download | BouncyCastle.NET-ed25519-bd1f720cafbcbf30891a286718ee91c44e1c8a4e.tar.xz |
Add X25519 and X448 from RFC 7748
- includes optimized ladders for base points
Diffstat (limited to 'crypto/crypto.csproj')
-rw-r--r-- | crypto/crypto.csproj | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/crypto/crypto.csproj b/crypto/crypto.csproj index 7ab780b62..d0afb9f14 100644 --- a/crypto/crypto.csproj +++ b/crypto/crypto.csproj @@ -6219,6 +6219,26 @@ BuildAction = "Compile" /> <File + RelPath = "src\math\ec\rfc7748\X25519.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "src\math\ec\rfc7748\X25519Field.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "src\math\ec\rfc7748\X448.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "src\math\ec\rfc7748\X448Field.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "src\math\field\FiniteFields.cs" SubType = "Code" BuildAction = "Compile" @@ -12310,6 +12330,16 @@ BuildAction = "Compile" /> <File + RelPath = "test\src\math\ec\rfc7748\test\X25519Test.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "test\src\math\ec\rfc7748\test\X448Test.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "test\src\math\ec\test\AllTests.cs" SubType = "Code" BuildAction = "Compile" |