diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2019-08-02 18:41:24 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2019-08-02 18:41:24 +0700 |
commit | d5b186492a09c1aee253998670fc843e6087fe6e (patch) | |
tree | 011ee300b06ce58772a6fe46879c35a0a372d198 /crypto/BouncyCastle.csproj | |
parent | Provide a constant-time zero test (diff) | |
download | BouncyCastle.NET-ed25519-d5b186492a09c1aee253998670fc843e6087fe6e.tar.xz |
Add experimental support for GLV Type A endomorphisms
Diffstat (limited to 'crypto/BouncyCastle.csproj')
-rw-r--r-- | crypto/BouncyCastle.csproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/BouncyCastle.csproj b/crypto/BouncyCastle.csproj index 8c7f342d2..6a5e58829 100644 --- a/crypto/BouncyCastle.csproj +++ b/crypto/BouncyCastle.csproj @@ -1219,7 +1219,9 @@ <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\ScaleXNegateYPointMap.cs" /> <Compile Include="src\math\ec\ScaleXPointMap.cs" /> + <Compile Include="src\math\ec\ScaleYNegateXPointMap.cs" /> <Compile Include="src\math\ec\ScaleYPointMap.cs" /> <Compile Include="src\math\ec\SimpleLookupTable.cs" /> <Compile Include="src\math\ec\abc\SimpleBigDecimal.cs" /> @@ -1334,9 +1336,13 @@ <Compile Include="src\math\ec\custom\sec\SecT571R1Curve.cs" /> <Compile Include="src\math\ec\custom\sec\SecT571R1Point.cs" /> <Compile Include="src\math\ec\endo\ECEndomorphism.cs" /> + <Compile Include="src\math\ec\endo\EndoUtilities.cs" /> <Compile Include="src\math\ec\endo\GlvEndomorphism.cs" /> + <Compile Include="src\math\ec\endo\GlvTypeAEndomorphism.cs" /> + <Compile Include="src\math\ec\endo\GlvTypeAParameters.cs" /> <Compile Include="src\math\ec\endo\GlvTypeBEndomorphism.cs" /> <Compile Include="src\math\ec\endo\GlvTypeBParameters.cs" /> + <Compile Include="src\math\ec\endo\ScalarSplitParameters.cs" /> <Compile Include="src\math\ec\multiplier\AbstractECMultiplier.cs" /> <Compile Include="src\math\ec\multiplier\DoubleAddMultiplier.cs" /> <Compile Include="src\math\ec\multiplier\ECMultiplier.cs" /> |