/* * (C) 2014,2015 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #include "tests.h" #if defined(BOTAN_HAS_GOST_34_10_2001) #include "test_pubkey.h" #include #include #include #include #include #include using namespace Botan; namespace { size_t gost_verify(const std::string& group_id, const std::string& x, const std::string& hash, const std::string& msg, const std::string& signature) { EC_Group group(OIDS::lookup(group_id)); PointGFp public_point = OS2ECP(hex_decode(x), group.get_curve()); GOST_3410_PublicKey gost(group, public_point); const std::string padding = "EMSA1(" + hash + ")"; PK_Verifier v(gost, padding); if(!v.verify_message(hex_decode(msg), hex_decode(signature))) return 1; return 0; } } size_t test_gost_3410() { size_t fails = 0; std::ifstream ecdsa_sig(TEST_DATA_DIR_PK "/gost_3410.vec"); fails += run_tests_bb(ecdsa_sig, "GOST-34.10 Signature", "Signature", true, [](std::map m) -> size_t { return gost_verify(m["Group"], m["Pubkey"], m["Hash"], m["Msg"], m["Signature"]); }); return fails; } #else SKIP_TEST(gost_3410); #endif // BOTAN_HAS_GOST_34_10_2001