diff options
author | lloyd <[email protected]> | 2014-02-08 15:50:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-02-08 15:50:01 +0000 |
commit | 7def8d303e3cf0f1a27ee8ebcb8ae5137261a361 (patch) | |
tree | 144e644bda4c58b80a9f8b9422bc6e723701e4b1 /src/tests/tests.cpp | |
parent | 1895c74f25debdf1a9d1ca9e539ec6cb598012a7 (diff) |
Fix a bug introduced in 1.11.6 where we tried to check CRL signatures
against the wrong key, causing any check to fail.
Clean up the NIST X.509 path validation tests and run them by default.
Diffstat (limited to 'src/tests/tests.cpp')
-rw-r--r-- | src/tests/tests.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp index 065931339..05fbebc89 100644 --- a/src/tests/tests.cpp +++ b/src/tests/tests.cpp @@ -1,8 +1,8 @@ #include "tests.h" #include <botan/init.h> #include <iostream> -#include <boost/filesystem.hpp> #include <fstream> +#include <boost/filesystem.hpp> namespace fs = boost::filesystem; @@ -266,6 +266,7 @@ int main(int argc, char* argv[]) DEF_TEST(pk_keygen); DEF_TEST(cvc); DEF_TEST(x509); + DEF_TEST(nist_x509); DEF_TEST(tls); if(tests.empty()) |