aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_ecdh.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-10-31 20:32:32 -0400
committerJack Lloyd <[email protected]>2016-10-31 20:32:32 -0400
commitcb6fa09b205c53d32e17a5785a4a1af5a9eaf7dd (patch)
treeac1b1dcc456ceb677f16f5f5a53475cc6def79e8 /src/tests/test_ecdh.cpp
parent73c2605f50e6192bf6cb560c51d32bc53b4c5597 (diff)
Test PK key creation via create_private_key API
Diffstat (limited to 'src/tests/test_ecdh.cpp')
-rw-r--r--src/tests/test_ecdh.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/tests/test_ecdh.cpp b/src/tests/test_ecdh.cpp
index 1ab2c4801..5bdce4144 100644
--- a/src/tests/test_ecdh.cpp
+++ b/src/tests/test_ecdh.cpp
@@ -53,14 +53,7 @@ class ECDH_Keygen_Tests : public PK_Key_Generation_Test
return { "secp256r1", "secp384r1", "secp521r1",
"brainpool256r1", "brainpool384r1", "brainpool512r1", "frp256v1" };
}
-
- std::unique_ptr<Botan::Private_Key> make_key(Botan::RandomNumberGenerator& rng,
- const std::string& param) const override
- {
- Botan::EC_Group group(param);
- std::unique_ptr<Botan::Private_Key> key(new Botan::ECDH_PrivateKey(rng, group));
- return key;
- }
+ std::string algo_name() const override { return "ECDH"; }
};