diff options
author | Alexander Bluhm <[email protected]> | 2017-04-28 14:43:08 +0200 |
---|---|---|
committer | Alexander Bluhm <[email protected]> | 2017-04-30 23:01:04 +0200 |
commit | 17afb2681aa704d8241f4dcaeb949d806ba8df09 (patch) | |
tree | cc121843296d867ce9fe2d90c93649e608cb31e2 /src/tests/tests.h | |
parent | 29cc6bebe132a34f882d450b35a69bf71bb3e27b (diff) |
Generate private RSA key with OpenSSL.
Implement RSA private key generation with RSA_generate_key_ex().
Make PK_Key_Generation_Test iterate over all providers.
Diffstat (limited to 'src/tests/tests.h')
-rw-r--r-- | src/tests/tests.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/tests.h b/src/tests/tests.h index 406cff57a..0d6dd2533 100644 --- a/src/tests/tests.h +++ b/src/tests/tests.h @@ -334,6 +334,7 @@ class Test virtual std::vector<Test::Result> run() = 0; virtual ~Test() = default; + virtual std::vector<std::string> possible_providers(const std::string&); static std::vector<Test::Result> run_test(const std::string& what, bool fail_if_missing); @@ -442,7 +443,6 @@ class Text_Based_Test : public Test virtual Test::Result run_one_test(const std::string& header, const VarMap& vars) = 0; // Called before run_one_test - virtual std::vector<std::string> possible_providers(const std::string&); virtual bool skip_this_test(const std::string& header, const VarMap& vars); |