diff options
author | Jack Lloyd <[email protected]> | 2018-06-28 13:59:36 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-06-28 13:59:36 -0400 |
commit | f52afc8e1c9be817074fa01bd28d68a06a0763ce (patch) | |
tree | f79ab80d295deaf6d05d0e2ba5fa9b949f35ffb4 /src/cli | |
parent | b417368c7bbf1c46dae0570abcb24cf5d6e0f106 (diff) |
More CLI tests
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/speed.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/speed.cpp b/src/cli/speed.cpp index ebf0fe466..d1b6aead3 100644 --- a/src/cli/speed.cpp +++ b/src/cli/speed.cpp @@ -1538,8 +1538,8 @@ class Speed final : public Command const Botan::BigInt random_e(rng(), e_bits); const Botan::BigInt random_f(rng(), f_bits); - std::unique_ptr<Timer> e_timer = make_timer(group_bits_str + " short exponent", "", "modexp"); - std::unique_ptr<Timer> f_timer = make_timer(group_bits_str + " full exponent", "", "modexp"); + std::unique_ptr<Timer> e_timer = make_timer(group_bits_str + " short exponent"); + std::unique_ptr<Timer> f_timer = make_timer(group_bits_str + " full exponent"); while(f_timer->under(runtime)) { |