/* * (C) 2014,2015 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #include "tests.h" #if defined(BOTAN_HAS_DLIES) #if defined(BOTAN_HAS_DIFFIE_HELLMAN) #include "test_pubkey.h" #include #include #include #include #include #include using namespace Botan; namespace { size_t dlies_kat(const std::string& p, const std::string& g, const std::string& x1, const std::string& x2, const std::string& msg, const std::string& ciphertext) { auto& rng = test_rng(); BigInt p_bn(p); BigInt g_bn(g); BigInt x1_bn(x1); BigInt x2_bn(x2); DL_Group domain(p_bn, g_bn); DH_PrivateKey from(rng, domain, x1_bn); DH_PrivateKey to(rng, domain, x2_bn); const std::string opt_str = "KDF2(SHA-1)/HMAC(SHA-1)/16"; std::vector options = split_on(opt_str, '/'); if(options.size() != 3) throw std::runtime_error("DLIES needs three options: " + opt_str); const size_t mac_key_len = to_u32bit(options[2]); DLIES_Encryptor e(from, KDF::create(options[0]).release(), MessageAuthenticationCode::create(options[1]).release(), mac_key_len); DLIES_Decryptor d(to, KDF::create(options[0]).release(), MessageAuthenticationCode::create(options[1]).release(), mac_key_len); e.set_other_key(to.public_value()); const std::string empty = ""; return validate_encryption(e, d, "DLIES", msg, empty, ciphertext); } } size_t test_dlies() { size_t fails = 0; std::ifstream dlies(TEST_DATA_DIR_PK "/dlies.vec"); fails += run_tests_bb(dlies, "DLIES Encryption", "Ciphertext", true, [](std::map m) -> size_t { return dlies_kat(m["P"], m["G"], m["X1"], m["X2"], m["Msg"], m["Ciphertext"]); }); return fails; } #else UNTESTED_WARNING(dlies); #endif // BOTAN_HAS_DIFFIE_HELLMAN #else SKIP_TEST(dlies); #endif // BOTAN_HAS_DLIES