diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-07-08 16:30:26 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-07-08 16:30:26 +0700 |
commit | 5268ce495106a67a3e167559b78c6dc1f857a423 (patch) | |
tree | 1b18df57d8e9dd6cf327f53608f9d1e228711332 /crypto/BouncyCastle.Android.csproj | |
parent | Improved performance for BigInteger.ToString(int) (diff) | |
download | BouncyCastle.NET-ed25519-5268ce495106a67a3e167559b78c6dc1f857a423.tar.xz |
Add Ed25519 and Ed448 from RFC 8032
Diffstat (limited to 'crypto/BouncyCastle.Android.csproj')
-rw-r--r-- | crypto/BouncyCastle.Android.csproj | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/crypto/BouncyCastle.Android.csproj b/crypto/BouncyCastle.Android.csproj index cdb80981b..d6f9b737c 100644 --- a/crypto/BouncyCastle.Android.csproj +++ b/crypto/BouncyCastle.Android.csproj @@ -1273,9 +1273,11 @@ <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\ec\rfc7748\X25519Field.cs" /> + <Compile Include="src\math\ec\rfc7748\X448.cs" /> + <Compile Include="src\math\ec\rfc7748\X448Field.cs" /> + <Compile Include="src\math\ec\rfc8032\Ed25519.cs" /> + <Compile Include="src\math\ec\rfc8032\Ed448.cs" /> <Compile Include="src\math\field\FiniteFields.cs" /> <Compile Include="src\math\field\GF2Polynomial.cs" /> <Compile Include="src\math\field\GenericPolynomialExtensionField.cs" /> |