diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-09 14:25:52 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-15 01:09:11 +0200 |
commit | e90e24b30b379752bf6531c663085de1d2a653d7 (patch) | |
tree | 6ff3a18a2e9dedb9e506d67f2c560e1c8f657e47 /src/Crypto/Crypto.vcxproj | |
parent | 0b2c8b09c6eb3ddce22fa88c34a640881f8f2177 (diff) | |
download | VeraCrypt-e90e24b30b379752bf6531c663085de1d2a653d7.tar.gz VeraCrypt-e90e24b30b379752bf6531c663085de1d2a653d7.zip |
Windows: Add support for Streebog (hash) and kuznyechik (encryption)
Diffstat (limited to 'src/Crypto/Crypto.vcxproj')
-rw-r--r-- | src/Crypto/Crypto.vcxproj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Crypto/Crypto.vcxproj b/src/Crypto/Crypto.vcxproj index f502458f..3db1e789 100644 --- a/src/Crypto/Crypto.vcxproj +++ b/src/Crypto/Crypto.vcxproj @@ -219,9 +219,11 @@ <ClCompile Include="Camellia.c" /> <ClCompile Include="cpu.c" /> <ClCompile Include="GostCipher.c" /> + <ClCompile Include="kuznyechik.c" /> <ClCompile Include="Rmd160.c" /> <ClCompile Include="Serpent.c" /> <ClCompile Include="Sha2.c" /> + <ClCompile Include="Streebog.c" /> <ClCompile Include="Twofish.c" /> <ClCompile Include="Whirlpool.c" /> </ItemGroup> @@ -234,10 +236,12 @@ <ClInclude Include="config.h" /> <ClInclude Include="cpu.h" /> <ClInclude Include="GostCipher.h" /> + <ClInclude Include="kuznyechik.h" /> <ClInclude Include="misc.h" /> <ClInclude Include="Rmd160.h" /> <ClInclude Include="Serpent.h" /> <ClInclude Include="Sha2.h" /> + <ClInclude Include="Streebog.h" /> <ClInclude Include="Twofish.h" /> <ClInclude Include="Whirlpool.h" /> </ItemGroup> |