summaryrefslogtreecommitdiff
path: root/cryptest.vcxproj.user
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 /cryptest.vcxproj.user
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 'cryptest.vcxproj.user')
-rw-r--r--cryptest.vcxproj.user9
1 files changed, 6 insertions, 3 deletions
diff --git a/cryptest.vcxproj.user b/cryptest.vcxproj.user
index ceb23602..4eef76b6 100644
--- a/cryptest.vcxproj.user
+++ b/cryptest.vcxproj.user
@@ -1,6 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
- <LocalDebuggerCommandArguments>v</LocalDebuggerCommandArguments>
+ <LocalDebuggerCommandArguments>tv chacha</LocalDebuggerCommandArguments>
</PropertyGroup>
-</Project>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
+ </PropertyGroup>
+</Project> \ No newline at end of file