diff options
author | Jack Lloyd <[email protected]> | 2016-10-31 20:32:32 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-10-31 20:32:32 -0400 |
commit | cb6fa09b205c53d32e17a5785a4a1af5a9eaf7dd (patch) | |
tree | ac1b1dcc456ceb677f16f5f5a53475cc6def79e8 /src/tests/test_eckcdsa.cpp | |
parent | 73c2605f50e6192bf6cb560c51d32bc53b4c5597 (diff) |
Test PK key creation via create_private_key API
Diffstat (limited to 'src/tests/test_eckcdsa.cpp')
-rw-r--r-- | src/tests/test_eckcdsa.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/tests/test_eckcdsa.cpp b/src/tests/test_eckcdsa.cpp index 5e9978096..c2c391c2f 100644 --- a/src/tests/test_eckcdsa.cpp +++ b/src/tests/test_eckcdsa.cpp @@ -58,13 +58,7 @@ class ECKCDSA_Keygen_Tests : public PK_Key_Generation_Test { public: std::vector<std::string> keygen_params() const override { return { "secp256r1", "secp384r1", "secp521r1" }; } - - std::unique_ptr<Botan::Private_Key> make_key(Botan::RandomNumberGenerator& rng, - const std::string& param) const override - { - Botan::EC_Group group(param); - return std::unique_ptr<Botan::Private_Key>(new Botan::ECKCDSA_PrivateKey(rng, group)); - } + std::string algo_name() const override { return "ECKCDSA"; } }; BOTAN_REGISTER_TEST("eckcdsa_sign", ECKCDSA_Signature_KAT_Tests); |