summaryrefslogtreecommitdiff
path: root/bench1.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-01 03:11:00 -0400
committerJeffrey Walton <noloader@gmail.com>2018-07-01 03:11:00 -0400
commit08e61370828e370d665fc59dbda534e899a0de0c (patch)
tree2effb37cb8243b36425a9ed086f1a59f87f0d301 /bench1.cpp
parent4a7814be7e0707895f4120c05f30b8a6f1eb41c6 (diff)
downloadcryptopp-git-08e61370828e370d665fc59dbda534e899a0de0c.tar.gz
Add SIMECK-64 SSSE3 implementation (GH #675)
Diffstat (limited to 'bench1.cpp')
-rw-r--r--bench1.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/bench1.cpp b/bench1.cpp
index 4cee1702..a322e70b 100644
--- a/bench1.cpp
+++ b/bench1.cpp
@@ -525,6 +525,10 @@ void Benchmark2(double t, double hertz)
std::cout << "\n<TR><TH>Algorithm<TH>MiB/Second" << cpb;
std::cout << "<TH>Microseconds to<BR>Setup Key and IV" << cpk;
+ BenchMarkByName<SymmetricCipher>("SIMECK-32/CTR", 8, "SIMECK-32(64)/CTR (64-bit key)");
+ BenchMarkByName<SymmetricCipher>("SIMECK-64/CTR", 16, "SIMECK-64(128)/CTR (128-bit key)");
+ return;
+
std::cout << "\n<TBODY style=\"background: white;\">";
{
#if CRYPTOPP_AESNI_AVAILABLE