aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/selftest/selftest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/selftest/selftest.h')
-rw-r--r--src/lib/selftest/selftest.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/lib/selftest/selftest.h b/src/lib/selftest/selftest.h
new file mode 100644
index 000000000..2ceadd0d4
--- /dev/null
+++ b/src/lib/selftest/selftest.h
@@ -0,0 +1,60 @@
+/*
+* Startup Self Test
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_SELF_TESTS_H__
+#define BOTAN_SELF_TESTS_H__
+
+#include <botan/algo_factory.h>
+#include <botan/scan_name.h>
+#include <map>
+#include <string>
+
+namespace Botan {
+
+/**
+* Run a set of self tests on some basic algorithms like AES and SHA-1
+* @param af an algorithm factory
+* @throws Self_Test_Error if a failure occured
+*/
+BOTAN_DLL void confirm_startup_self_tests(Algorithm_Factory& af);
+
+/**
+* Run a set of self tests on some basic algorithms like AES and SHA-1
+* @param af an algorithm factory
+* @returns false if a failure occured, otherwise true
+*/
+BOTAN_DLL bool passes_self_tests(Algorithm_Factory& af);
+
+/**
+* Run a set of algorithm KATs (known answer tests)
+* @param algo_name the algorithm we are testing
+* @param vars a set of input variables for this test, all
+ hex encoded. Keys used: "input", "output", "key", and "iv"
+* @param af an algorithm factory
+* @returns map from provider name to test result for that provider
+*/
+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);
+
+/**
+* Run a set of algorithm KATs (known answer tests)
+* @param algo_name the algorithm we are testing
+* @param vars a set of input variables for this test, all
+ hex encoded. Keys used: "input", "output", "key", and "iv"
+* @param af an algorithm factory
+* @returns map from provider name to test result for that provider
+*/
+BOTAN_DLL std::map<std::string, std::string>
+algorithm_kat_detailed(const SCAN_Name& algo_name,
+ const std::map<std::string, std::string>& vars,
+ Algorithm_Factory& af);
+
+}
+
+#endif