diff options
author | lloyd <[email protected]> | 2010-06-21 16:12:04 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-21 16:12:04 +0000 |
commit | ce14ac149a3b3bf70b3554aeefcdb9de5976da34 (patch) | |
tree | e83b38f1c545dbdd0cda432144db23346562da85 /src/selftest | |
parent | fe47c1cb19d6f3d1fb54f488cf08eb1830dda1e5 (diff) |
Doxygen
Diffstat (limited to 'src/selftest')
-rw-r--r-- | src/selftest/selftest.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/selftest/selftest.h b/src/selftest/selftest.h index df71e6f8e..091206579 100644 --- a/src/selftest/selftest.h +++ b/src/selftest/selftest.h @@ -15,13 +15,28 @@ namespace Botan { -/* -* Self Tests +/** +* 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, |