/* * (C) 2009,2015 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #include "test_pubkey.h" #if defined(BOTAN_HAS_PUBLIC_KEY_CRYPTO) #include "test_rng.h" #include #include #include #include #include namespace Botan_Tests { namespace { std::vector possible_pk_providers() { return { "base", "openssl", "tpm" }; } } void check_invalid_signatures(Test::Result& result, Botan::PK_Verifier& verifier, const std::vector& message, const std::vector& signature) { const std::vector zero_sig(signature.size()); result.test_eq("all zero signature invalid", verifier.verify_message(message, zero_sig), false); std::vector bad_sig = signature; for(size_t i = 0; i <= Test::soak_level(); ++i) { while(bad_sig == signature) bad_sig = Test::mutate_vec(bad_sig, true); if(!result.test_eq("incorrect signature invalid", verifier.verify_message(message, bad_sig), false)) { result.test_note("Accepted invalid signature " + Botan::hex_encode(bad_sig)); } } } void check_invalid_ciphertexts(Test::Result& result, Botan::PK_Decryptor& decryptor, const std::vector& plaintext, const std::vector& ciphertext) { std::vector bad_ctext = ciphertext; size_t ciphertext_accepted = 0, ciphertext_rejected = 0; for(size_t i = 0; i <= Test::soak_level(); ++i) { while(bad_ctext == ciphertext) bad_ctext = Test::mutate_vec(bad_ctext, true); try { const Botan::secure_vector decrypted = decryptor.decrypt(bad_ctext); ++ciphertext_accepted; if(!result.test_ne("incorrect ciphertext different", decrypted, plaintext)) { result.test_eq("used corrupted ciphertext", bad_ctext, ciphertext); } } catch(std::exception& e) { ++ciphertext_rejected; } } result.test_note("Accepted " + std::to_string(ciphertext_accepted) + " invalid ciphertexts, rejected " + std::to_string(ciphertext_rejected)); } Test::Result PK_Signature_Generation_Test::run_one_test(const std::string&, const VarMap& vars) { const std::vector message = get_req_bin(vars, "Msg"); const std::vector signature = get_req_bin(vars, "Signature"); const std::string padding = get_opt_str(vars, "Padding", default_padding(vars)); Test::Result result(algo_name() + "/" + padding + " signature generation"); std::unique_ptr privkey = load_private_key(vars); std::unique_ptr pubkey(Botan::X509::load_key(Botan::X509::BER_encode(*privkey))); for(auto&& sign_provider : possible_pk_providers()) { std::unique_ptr signer; try { signer.reset(new Botan::PK_Signer(*privkey, padding, Botan::IEEE_1363, sign_provider)); } catch(Botan::Lookup_Error) { //result.test_note("Skipping signing with " + sign_provider); continue; } std::unique_ptr rng; if(vars.count("Nonce")) { rng.reset(new Fixed_Output_RNG(get_req_bin(vars, "Nonce"))); } const std::vector generated_signature = signer->sign_message(message, rng ? *rng : Test::rng()); if(sign_provider == "base") { result.test_eq("generated signature matches KAT", generated_signature, signature); } for(auto&& verify_provider : possible_pk_providers()) { std::unique_ptr verifier; try { verifier.reset(new Botan::PK_Verifier(*pubkey, padding, Botan::IEEE_1363, verify_provider)); } catch(Botan::Lookup_Error) { //result.test_note("Skipping verifying with " + verify_provider); continue; } if(!result.test_eq("generated signature valid", verifier->verify_message(message, generated_signature), true)) { result.test_failure("generated signature", generated_signature); } check_invalid_signatures(result, *verifier, message, signature); result.test_eq("KAT signature valid", verifier->verify_message(message, signature), true); } } return result; } Test::Result PK_Signature_Verification_Test::run_one_test(const std::string&, const VarMap& vars) { const std::vector message = get_req_bin(vars, "Msg"); const std::vector signature = get_req_bin(vars, "Signature"); const std::string padding = get_opt_str(vars, "Padding", default_padding(vars)); std::unique_ptr pubkey = load_public_key(vars); Test::Result result(algo_name() + "/" + padding + " signature verification"); Botan::PK_Verifier verifier(*pubkey, padding); result.test_eq("correct signature valid", verifier.verify_message(message, signature), true); check_invalid_signatures(result, verifier, message, signature); return result; } Test::Result PK_Encryption_Decryption_Test::run_one_test(const std::string&, const VarMap& vars) { const std::vector plaintext = get_req_bin(vars, "Msg"); const std::vector ciphertext = get_req_bin(vars, "Ciphertext"); const std::string padding = get_opt_str(vars, "Padding", default_padding(vars)); Test::Result result(algo_name() + "/" + padding + " decryption"); std::unique_ptr privkey = load_private_key(vars); // instead slice the private key to work around elgamal test inputs //std::unique_ptr pubkey(Botan::X509::load_key(Botan::X509::BER_encode(*privkey))); for(auto&& enc_provider : possible_pk_providers()) { std::unique_ptr encryptor; try { encryptor.reset(new Botan::PK_Encryptor_EME(*privkey, padding, enc_provider)); } catch(Botan::Lookup_Error) { //result.test_note("Skipping encryption with provider " + enc_provider); continue; } std::unique_ptr kat_rng; if(vars.count("Nonce")) { kat_rng.reset(new Fixed_Output_RNG(get_req_bin(vars, "Nonce"))); } const std::vector generated_ciphertext = encryptor->encrypt(plaintext, kat_rng ? *kat_rng : Test::rng()); if(enc_provider == "base") { result.test_eq("generated ciphertext matches KAT", generated_ciphertext, ciphertext); } for(auto&& dec_provider : possible_pk_providers()) { std::unique_ptr decryptor; try { decryptor.reset(new Botan::PK_Decryptor_EME(*privkey, padding, dec_provider)); } catch(Botan::Lookup_Error) { //result.test_note("Skipping decryption with provider " + dec_provider); continue; } result.test_eq("decryption of KAT", decryptor->decrypt(ciphertext), plaintext); check_invalid_ciphertexts(result, *decryptor, plaintext, ciphertext); result.test_eq("decryption of generated ciphertext", decryptor->decrypt(generated_ciphertext), plaintext); } } return result; } Test::Result PK_Key_Agreement_Test::run_one_test(const std::string&, const VarMap& vars) { const std::vector shared = get_req_bin(vars, "K"); const std::string kdf = get_opt_str(vars, "KDF", default_kdf(vars)); Test::Result result(algo_name() + "/" + kdf + " key agreement"); std::unique_ptr privkey = load_our_key(vars); const std::vector pubkey = load_their_key(vars); const size_t key_len = get_opt_sz(vars, "OutLen", 0); Botan::PK_Key_Agreement kas(*privkey, kdf); result.test_eq("agreement", kas.derive_key(key_len, pubkey).bits_of(), shared); return result; } std::vector PK_Key_Generation_Test::run() { std::vector results; for(auto&& param : keygen_params()) { std::unique_ptr key = make_key(Test::rng(), param); const std::string report_name = key->algo_name() + (param.empty() ? param : " " + param); results.push_back(test_key(report_name, *key)); } return results; } Test::Result PK_Key_Generation_Test::test_key(const std::string& algo, const Botan::Private_Key& key) { Test::Result result(algo + " keygen"); const std::string pub_pem = Botan::X509::PEM_encode(key); try { Botan::DataSource_Memory input_pub(pub_pem); std::unique_ptr restored_pub(Botan::X509::load_key(input_pub)); result.test_eq("recovered public key from private", restored_pub.get(), true); result.test_eq("public key has same type", restored_pub->algo_name(), key.algo_name()); result.test_eq("public key passes checks", restored_pub->check_key(Test::rng(), false), true); } catch(std::exception& e) { result.test_failure("roundtrip public key", e.what()); } const std::string priv_pem = Botan::PKCS8::PEM_encode(key); try { Botan::DataSource_Memory input_priv(priv_pem); std::unique_ptr restored_priv( Botan::PKCS8::load_key(input_priv, Test::rng())); result.test_eq("recovered private key from blob", restored_priv.get(), true); result.test_eq("reloaded key has same type", restored_priv->algo_name(), key.algo_name()); result.test_eq("private key passes checks", restored_priv->check_key(Test::rng(), false), true); } catch(std::exception& e) { result.test_failure("roundtrip private key", e.what()); } const std::string passphrase = Test::random_password(); const std::string enc_priv_pem = Botan::PKCS8::PEM_encode(key, Test::rng(), passphrase, std::chrono::milliseconds(10)); try { Botan::DataSource_Memory input_priv(priv_pem); std::unique_ptr restored_priv( Botan::PKCS8::load_key(input_priv, Test::rng(), passphrase)); result.test_eq("recovered private key from encrypted blob", restored_priv.get(), true); result.test_eq("reloaded key has same type", restored_priv->algo_name(), key.algo_name()); result.test_eq("private key passes checks", restored_priv->check_key(Test::rng(), false), true); } catch(std::exception& e) { result.test_failure("roundtrip private key", e.what()); } return result; } } #endif