aboutsummaryrefslogtreecommitdiffstats
path: root/src/selftest/selftest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/selftest/selftest.h')
-rw-r--r--src/selftest/selftest.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/selftest/selftest.h b/src/selftest/selftest.h
index 9e36d2298..4cb6e23d7 100644
--- a/src/selftest/selftest.h
+++ b/src/selftest/selftest.h
@@ -9,6 +9,9 @@
#define BOTAN_SELF_TESTS_H__
#include <botan/algo_factory.h>
+#include <botan/scan_name.h>
+#include <map>
+#include <string>
namespace Botan {
@@ -17,6 +20,11 @@ namespace Botan {
*/
BOTAN_DLL bool passes_self_tests(Algorithm_Factory& af);
+BOTAN_DLL std::map<std::string, bool>
+algorithm_kat(const SCAN_Name& algo_name,
+ const std::map<std::string, std::string>& vars,
+ Algorithm_Factory& af);
+
}
#endif