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/BouncyCastle.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/BouncyCastle.csproj')
-rw-r--r-- | crypto/BouncyCastle.csproj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/BouncyCastle.csproj b/crypto/BouncyCastle.csproj index 1303b1c59..ab36fa529 100644 --- a/crypto/BouncyCastle.csproj +++ b/crypto/BouncyCastle.csproj @@ -1266,6 +1266,10 @@ <Compile Include="src\math\ec\multiplier\WTauNafPreCompInfo.cs" /> <Compile Include="src\math\ec\multiplier\ZSignedDigitL2RMultiplier.cs" /> <Compile Include="src\math\ec\multiplier\ZSignedDigitR2LMultiplier.cs" /> + <Compile Include="src\math\ec\rfc7748\X25519.cs" /> + <Compile Include="src\math\ec\rfc7748\X25519Field.cs"/> + <Compile Include="src\math\ec\rfc7748\X448.cs"/> + <Compile Include="src\math\ec\rfc7748\X448Field.cs"/> <Compile Include="src\math\field\FiniteFields.cs" /> <Compile Include="src\math\field\GF2Polynomial.cs" /> <Compile Include="src\math\field\GenericPolynomialExtensionField.cs" /> |