diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-04 13:21:48 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-10-17 18:40:23 +0200 |
commit | e5a9e9239b0cf1001d9b91497b4ff3ab4a190b1f (patch) | |
tree | 5656a151e5f777d834924a3784432c5bd928ed03 /src/Crypto/Crypto.vcxproj | |
parent | 7ff3c5d1080482c55a5c5f4720d22d212a8d7373 (diff) | |
download | VeraCrypt-e5a9e9239b0cf1001d9b91497b4ff3ab4a190b1f.tar.gz VeraCrypt-e5a9e9239b0cf1001d9b91497b4ff3ab4a190b1f.zip |
Crypto: Use SIMD optimized Serpent implementation from Botan. 2.5x speed gain factor. Update credits and copyrights notice.
Diffstat (limited to 'src/Crypto/Crypto.vcxproj')
-rw-r--r-- | src/Crypto/Crypto.vcxproj | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Crypto/Crypto.vcxproj b/src/Crypto/Crypto.vcxproj index 3db1e789..7573f1ec 100644 --- a/src/Crypto/Crypto.vcxproj +++ b/src/Crypto/Crypto.vcxproj @@ -221,7 +221,8 @@ <ClCompile Include="GostCipher.c" /> <ClCompile Include="kuznyechik.c" /> <ClCompile Include="Rmd160.c" /> - <ClCompile Include="Serpent.c" /> + <ClCompile Include="SerpentFast.c" /> + <ClCompile Include="SerpentFast_simd.cpp" /> <ClCompile Include="Sha2.c" /> <ClCompile Include="Streebog.c" /> <ClCompile Include="Twofish.c" /> @@ -239,7 +240,8 @@ <ClInclude Include="kuznyechik.h" /> <ClInclude Include="misc.h" /> <ClInclude Include="Rmd160.h" /> - <ClInclude Include="Serpent.h" /> + <ClInclude Include="SerpentFast.h" /> + <ClInclude Include="SerpentFast_sbox.h" /> <ClInclude Include="Sha2.h" /> <ClInclude Include="Streebog.h" /> <ClInclude Include="Twofish.h" /> |