diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-23 13:17:21 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-23 13:17:21 +0700 |
commit | 1eae3093554e12822f1c53b174af894af28bbfaa (patch) | |
tree | 7b91f11bb15892c0498ec81703a473154bc3d4e9 /crypto/crypto.csproj | |
parent | Avoid unnecessary multiplication in final ExtEuclid iteration (diff) | |
download | BouncyCastle.NET-ed25519-1eae3093554e12822f1c53b174af894af28bbfaa.tar.xz |
Add Nat/Mod classes and use instead of (slow) BigInteger.ModInverse implementation for FpFieldElement
Diffstat (limited to 'crypto/crypto.csproj')
-rw-r--r-- | crypto/crypto.csproj | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/crypto/crypto.csproj b/crypto/crypto.csproj index abc4f6050..dc5c6eff6 100644 --- a/crypto/crypto.csproj +++ b/crypto/crypto.csproj @@ -4649,12 +4649,17 @@ BuildAction = "Compile" /> <File - RelPath = "src\math\ec\IntArray.cs" + RelPath = "src\math\ec\LongArray.cs" SubType = "Code" BuildAction = "Compile" /> <File - RelPath = "src\math\ec\LongArray.cs" + RelPath = "src\math\ec\Mod.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "src\math\ec\Nat.cs" SubType = "Code" BuildAction = "Compile" /> |