diff --git a/crypto/crypto.csproj b/crypto/crypto.csproj
index a1e217aca..e6ab94ee2 100644
--- a/crypto/crypto.csproj
+++ b/crypto/crypto.csproj
@@ -249,6 +249,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\asn1\BERBitString.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\asn1\BERGenerator.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -3074,6 +3079,16 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\IEntropySource.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\IEntropySourceProvider.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\IMac.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -3309,6 +3324,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\digests\NonMemoableDigest.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\digests\NullDigest.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -3629,6 +3649,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\engines\SerpentEngineBase.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\engines\SkipjackEngine.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -3644,6 +3669,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\engines\TnepresEngine.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\engines\TwofishEngine.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -4309,6 +4339,16 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\prng\BasicEntropySourceProvider.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\CryptoApiEntropySourceProvider.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\prng\CryptoApiRandomGenerator.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -4319,6 +4359,16 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\prng\EntropyUtilities.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\IDrbgProvider.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\prng\IRandomGenerator.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -4329,6 +4379,16 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\prng\SP800SecureRandom.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\SP800SecureRandomBuilder.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\prng\ThreadedSeedGenerator.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -4339,6 +4399,46 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\crypto\prng\X931Rng.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\X931SecureRandom.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\X931SecureRandomBuilder.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\drbg\CtrSP800Drbg.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\drbg\DrbgUtilities.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\drbg\HashSP800Drbg.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\drbg\HMacSP800Drbg.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "src\crypto\prng\drbg\ISP80090Drbg.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\crypto\signers\DSADigestSigner.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -11065,6 +11165,41 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "test\src\crypto\prng\test\CtrDrbgTest.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "test\src\crypto\prng\test\DrbgTestVector.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "test\src\crypto\prng\test\HashDrbgTest.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "test\src\crypto\prng\test\HMacDrbgTest.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "test\src\crypto\prng\test\TestEntropySourceProvider.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "test\src\crypto\prng\test\X931Test.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "test\src\crypto\prng\test\X931TestVector.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "test\src\crypto\test\AeadTestUtilities.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -11360,6 +11495,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "test\src\crypto\test\NonMemoableDigestTest.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "test\src\crypto\test\NoekeonTest.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -11640,6 +11780,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "test\src\crypto\test\TnepresTest.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "test\src\crypto\test\TwofishTest.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -12110,6 +12255,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "test\src\security\test\TestMacUtil.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "test\src\security\test\TestSignerUtil.cs"
SubType = "Code"
BuildAction = "Compile"
|