summaryrefslogtreecommitdiff
path: root/cryptlib.vcxproj
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-10-23 07:57:59 -0400
committerJeffrey Walton <noloader@gmail.com>2018-10-23 07:57:59 -0400
commit916c4484a2705fb296147355028fdb31cf0ea808 (patch)
treeba0119bda09cc617fcfd6a5bf8fa3ad05fd7313d /cryptlib.vcxproj
parent35b874b527f659be6dc19190cce4f59b833afd10 (diff)
downloadcryptopp-git-916c4484a2705fb296147355028fdb31cf0ea808.tar.gz
Add ChaCha SSE2 implementation
Thanks to Jack Lloyd and Botan for allowing us to use the implementation. The numbers for SSE2 are very good. When compared with Salsa20 ASM the results are: * Salsa20 2.55 cpb; ChaCha/20 2.90 cpb * Salsa20/12 1.61 cpb; ChaCha/12 1.90 cpb * Salsa20/8 1.34 cpb; ChaCha/8 1.5 cpb
Diffstat (limited to 'cryptlib.vcxproj')
-rw-r--r--cryptlib.vcxproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptlib.vcxproj b/cryptlib.vcxproj
index 156fa30f..8794a5bb 100644
--- a/cryptlib.vcxproj
+++ b/cryptlib.vcxproj
@@ -191,6 +191,7 @@
<ClCompile Include="cbcmac.cpp" />
<ClCompile Include="ccm.cpp" />
<ClCompile Include="chacha.cpp" />
+ <ClCompile Include="chacha-simd.cpp" />
<ClCompile Include="cham.cpp" />
<ClCompile Include="cham-simd.cpp" />
<ClCompile Include="channels.cpp" />