aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/bench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/bench.cpp')
-rw-r--r--src/cli/bench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/bench.cpp b/src/cli/bench.cpp
index 82d04b139..cd16a291f 100644
--- a/src/cli/bench.cpp
+++ b/src/cli/bench.cpp
@@ -554,8 +554,8 @@ class Benchmark : public Command
const std::string& kdf,
std::chrono::milliseconds msec)
{
- Botan::PK_Key_Agreement ka1(key1, kdf /*, provider */);
- Botan::PK_Key_Agreement ka2(key2, kdf /*, provider */);
+ Botan::PK_Key_Agreement ka1(key1, kdf, provider);
+ Botan::PK_Key_Agreement ka2(key2, kdf, provider);
const std::vector<uint8_t> ka1_pub = key1.public_value();
const std::vector<uint8_t> ka2_pub = key2.public_value();