diff options
author | lloyd <[email protected]> | 2009-09-29 18:51:42 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-09-29 18:51:42 +0000 |
commit | a5e83abdf7d63dd52147ff72bfb15593dcf63046 (patch) | |
tree | 00c22dfa62a61b874875bc5cc7fc3db9e65e6d77 | |
parent | f6f5270f04aaee5a29c3562991a1f2378b63652c (diff) |
Add interface for general runtime self-testing of ciphers, hashes, etc
-rw-r--r-- | src/selftest/selftest.cpp | 76 | ||||
-rw-r--r-- | src/selftest/selftest.h | 7 |
2 files changed, 75 insertions, 8 deletions
diff --git a/src/selftest/selftest.cpp b/src/selftest/selftest.cpp index d644e866e..6fd6b7fcd 100644 --- a/src/selftest/selftest.cpp +++ b/src/selftest/selftest.cpp @@ -13,6 +13,7 @@ #include <botan/ofb.h> #include <botan/ctr.h> #include <botan/hmac.h> +#include <botan/stl_util.h> namespace Botan { @@ -21,17 +22,21 @@ namespace { /* * Perform a Known Answer Test */ +bool test_filter_kat(Filter* filter, + const std::string& input, + const std::string& output) + { + Pipe pipe(new Hex_Decoder, filter, new Hex_Encoder); + pipe.process_msg(input); + + return (output == pipe.read_all_as_string()); + } + void do_kat(const std::string& in, const std::string& out, const std::string& algo_name, Filter* filter) { - if(out.length()) - { - Pipe pipe(new Hex_Decoder, filter, new Hex_Encoder); - pipe.process_msg(in); - - if(out != pipe.read_all_as_string()) - throw Self_Test_Failure(algo_name + " startup test"); - } + if(!test_filter_kat(filter, in, out)) + throw Self_Test_Failure(algo_name + " startup test"); } /* @@ -76,6 +81,61 @@ void cipher_kat(const BlockCipher* proto, } /* +* Run a set of KATs +*/ +std::map<std::string, bool> +algorithm_kat(const std::string& name, + const std::map<std::string, std::string>& vars, + Algorithm_Factory& af) + { + std::vector<std::string> providers = af.providers_of(name); + std::map<std::string, bool> all_results; + + if(providers.empty()) // no providers, nothing to do + return all_results; + + const std::string input = search_map(vars, std::string("input")); + const std::string output = search_map(vars, std::string("output")); + const std::string key = search_map(vars, std::string("key")); + + for(u32bit i = 0; i != providers.size(); ++i) + { + const std::string provider = providers[i]; + + if(const HashFunction* proto = + af.prototype_hash_function(name, provider)) + { + all_results[provider] = test_filter_kat(new Hash_Filter(proto->clone()), + input, output); + } + else if(const MessageAuthenticationCode* proto = + af.prototype_mac(name, provider)) + { + all_results[provider] = test_filter_kat(new MAC_Filter(proto->clone(), key), + input, output); + } + +#if 0 + if(const BlockCipher* proto = + af.prototype_block_cipher(name, provider)) + { + std::auto_ptr<BlockCipher> block_cipher(proto->clone()); + all_results[provider] = test_block_cipher(block_cipher.get()); + } + else if(const StreamCipher* proto = + af.prototype_stream_cipher(name, provider)) + { + std::auto_ptr<StreamCipher> stream_cipher(proto->clone()); + all_results[provider] = test_stream_cipher(stream_cipher.get()); + } + else +#endif + } + + return all_results; + } + +/* * Perform Self Tests */ bool passes_self_tests(Algorithm_Factory& af) diff --git a/src/selftest/selftest.h b/src/selftest/selftest.h index 9e36d2298..b5fc9f80a 100644 --- a/src/selftest/selftest.h +++ b/src/selftest/selftest.h @@ -9,6 +9,8 @@ #define BOTAN_SELF_TESTS_H__ #include <botan/algo_factory.h> +#include <map> +#include <string> namespace Botan { @@ -17,6 +19,11 @@ namespace Botan { */ BOTAN_DLL bool passes_self_tests(Algorithm_Factory& af); +BOTAN_DLL std::map<std::string, bool> +algorithm_kat(const std::string& name, + const std::map<std::string, std::string>& vars, + Algorithm_Factory& af); + } #endif |