diff options
author | Patrick Wildt <[email protected]> | 2017-06-28 16:39:29 +0200 |
---|---|---|
committer | Patrick Wildt <[email protected]> | 2017-07-05 11:05:49 +0200 |
commit | 92b0ff1faaba7c3fd886e79550bf5fe0fc567e25 (patch) | |
tree | 63b93de4f4723bafeee566a3a74a9c5f5b5155ab /src/tests | |
parent | 783798ca424fe44b36bdec386da91da75e856cdd (diff) |
BearSSL: Support for ECDSA
This commit adds support for ECDSA using BearSSL as a backend. This
means we can test BearSSL's ECDSA algorithms using the extensive
Botan testsuite.
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_pubkey.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_pubkey.cpp b/src/tests/test_pubkey.cpp index a38b7d3f3..d25bf8d68 100644 --- a/src/tests/test_pubkey.cpp +++ b/src/tests/test_pubkey.cpp @@ -82,9 +82,9 @@ void check_invalid_ciphertexts(Test::Result& result, " invalid ciphertexts, rejected " + std::to_string(ciphertext_rejected)); } -std::vector<std::string> PK_Test::possible_providers(const std::string&) +std::vector<std::string> PK_Test::possible_providers(const std::string& params) { - return Test::provider_filter({ "base", "openssl", "tpm" }); + return Test::provider_filter({ "base", "bearssl", "openssl", "tpm" }); } Test::Result |