diff options
author | lloyd <[email protected]> | 2014-01-01 21:20:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-01 21:20:55 +0000 |
commit | 197dc467dec28a04c3b2f30da7cef122dfbb13e9 (patch) | |
tree | cdbd3ddaec051c72f0a757db461973d90c37b97a /src/tests/test_mac.cpp | |
parent | 62faac373c07cfe10bc8c309e89ebdd30d8e5eaa (diff) |
Shuffle things around. Add NIST X.509 test to build.
Diffstat (limited to 'src/tests/test_mac.cpp')
-rw-r--r-- | src/tests/test_mac.cpp | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/tests/test_mac.cpp b/src/tests/test_mac.cpp new file mode 100644 index 000000000..31f159663 --- /dev/null +++ b/src/tests/test_mac.cpp @@ -0,0 +1,62 @@ +#include "tests.h" + +#include <botan/libstate.h> +#include <botan/mac.h> +#include <botan/hex.h> +#include <iostream> +#include <fstream> + +using namespace Botan; + +namespace { + +bool mac_test(const std::string& algo, + const std::string& key_hex, + const std::string& in_hex, + const std::string& out_hex) + { + Algorithm_Factory& af = global_state().algorithm_factory(); + + const auto providers = af.providers_of(algo); + size_t fails = 0; + + for(auto provider: providers) + { + auto proto = af.prototype_mac(algo, provider); + + if(!proto) + { + std::cout << "Unable to get " << algo << " from " << provider << "\n"; + ++fails; + continue; + } + + std::unique_ptr<MessageAuthenticationCode> mac(proto->clone()); + + mac->set_key(hex_decode(key_hex)); + mac->update(hex_decode(in_hex)); + + auto h = mac->final(); + + if(h != hex_decode_locked(out_hex)) + { + std::cout << algo << " " << provider << " got " << hex_encode(h) << " != " << out_hex << "\n"; + ++fails; + } + } + + return (fails == 0); + } + +} + +size_t test_mac() + { + std::ifstream vec(CHECKS_DIR "/mac.vec"); + + return run_tests_bb(vec, "Mac", "Out", true, + [](std::map<std::string, std::string> m) -> bool + { + return mac_test(m["Mac"], m["Key"], m["In"], m["Out"]); + }); + } |