/* * 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 #include #include #include namespace Botan { /* * Self Tests */ BOTAN_DLL bool passes_self_tests(Algorithm_Factory& af); BOTAN_DLL std::map algorithm_kat(const SCAN_Name& algo_name, const std::map& vars, Algorithm_Factory& af); } #endif