aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/speed.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-13 12:08:30 -0400
committerJack Lloyd <[email protected]>2017-10-13 12:16:39 -0400
commit577828a93755549f0e9d8413488e3e4485c67263 (patch)
treedbb1d6284914e0aa89212bfd33016e1a1a2c45c5 /src/cli/speed.cpp
parent742420b4b631d6d9139fe5f63ca5650f4fb56b9d (diff)
Optimize GCM
By allowing multiple blocks for clmul, slight speedup there though still far behind optimum. Precompute a table of multiples of H, 3-4x faster on systems without clmul (and still no secret indexes). Refactor GMAC to not derive from GHASH
Diffstat (limited to 'src/cli/speed.cpp')
-rw-r--r--src/cli/speed.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cli/speed.cpp b/src/cli/speed.cpp
index 83bb29efa..01a84d7c9 100644
--- a/src/cli/speed.cpp
+++ b/src/cli/speed.cpp
@@ -1024,6 +1024,7 @@ class Speed final : public Command
const Botan::SymmetricKey key(rng(), mac.maximum_keylength());
mac.set_key(key);
+ mac.start(nullptr, 0);
Timer timer(mac.name(), provider, "mac", buffer.size(), buf_size);
timer.run_until_elapsed(runtime, [&]() { mac.update(buffer); });