| /* Copyright 2023 The ChromiumOS Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include "common.h" |
| #include "crypto/elliptic_curve_key.h" |
| #include "ec_commands.h" |
| #include "fpsensor/fpsensor_auth_crypto.h" |
| #include "openssl/aes.h" |
| #include "openssl/bn.h" |
| #include "openssl/ec.h" |
| #include "openssl/obj_mac.h" |
| #include "rollback.h" |
| #include "test_util.h" |
| #include "util.h" |
| |
| #include <assert.h> |
| #include <stdbool.h> |
| |
| #include <array> |
| |
| enum ec_error_list rollback_get_secret(uint8_t *secret) |
| { |
| // We should not call this function in the test. |
| TEST_ASSERT(false); |
| } |
| |
| namespace |
| { |
| |
| test_static enum ec_error_list test_fp_create_ec_key_from_pubkey(void) |
| { |
| fp_elliptic_curve_public_key pubkey = { |
| .x = { |
| 0x85, 0xAD, 0x35, 0x23, 0x05, 0x1E, 0x33, 0x3F, |
| 0xCA, 0xA7, 0xEA, 0xA5, 0x88, 0x33, 0x12, 0x95, |
| 0xA7, 0xB5, 0x98, 0x9F, 0x32, 0xEF, 0x7D, 0xE9, |
| 0xF8, 0x70, 0x14, 0x5E, 0x89, 0xCB, 0xDE, 0x1F, |
| }, |
| .y = { |
| 0xD1, 0xDC, 0x91, 0xC6, 0xE6, 0x5B, 0x1E, 0x3C, |
| 0x01, 0x6C, 0xE6, 0x50, 0x25, 0x5D, 0x89, 0xCF, |
| 0xB7, 0x8D, 0x88, 0xB9, 0x0D, 0x09, 0x41, 0xF1, |
| 0x09, 0x4F, 0x61, 0x55, 0x6C, 0xC4, 0x96, 0x6B, |
| }, |
| }; |
| |
| bssl::UniquePtr<EC_KEY> key = create_ec_key_from_pubkey(pubkey); |
| |
| TEST_NE(key.get(), nullptr, "%p"); |
| TEST_EQ(EC_KEY_check_key(key.get()), 1, "%d"); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_create_ec_key_from_pubkey_fail(void) |
| { |
| fp_elliptic_curve_public_key pubkey = { |
| .x = {}, |
| .y = {}, |
| }; |
| |
| bssl::UniquePtr<EC_KEY> key = create_ec_key_from_pubkey(pubkey); |
| |
| TEST_EQ(key.get(), nullptr, "%p"); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_create_pubkey_from_ec_key(void) |
| { |
| fp_elliptic_curve_public_key pubkey = { |
| .x = { |
| 0x85, 0xAD, 0x35, 0x23, 0x05, 0x1E, 0x33, 0x3F, |
| 0xCA, 0xA7, 0xEA, 0xA5, 0x88, 0x33, 0x12, 0x95, |
| 0xA7, 0xB5, 0x98, 0x9F, 0x32, 0xEF, 0x7D, 0xE9, |
| 0xF8, 0x70, 0x14, 0x5E, 0x89, 0xCB, 0xDE, 0x1F, |
| }, |
| .y = { |
| 0xD1, 0xDC, 0x91, 0xC6, 0xE6, 0x5B, 0x1E, 0x3C, |
| 0x01, 0x6C, 0xE6, 0x50, 0x25, 0x5D, 0x89, 0xCF, |
| 0xB7, 0x8D, 0x88, 0xB9, 0x0D, 0x09, 0x41, 0xF1, |
| 0x09, 0x4F, 0x61, 0x55, 0x6C, 0xC4, 0x96, 0x6B, |
| }, |
| }; |
| |
| bssl::UniquePtr<EC_KEY> key = create_ec_key_from_pubkey(pubkey); |
| |
| TEST_NE(key.get(), nullptr, "%p"); |
| TEST_EQ(EC_KEY_check_key(key.get()), 1, "%d"); |
| |
| auto result = create_pubkey_from_ec_key(*key); |
| TEST_ASSERT(result.has_value()); |
| |
| TEST_ASSERT_ARRAY_EQ(result->x, pubkey.x, sizeof(pubkey.x)); |
| TEST_ASSERT_ARRAY_EQ(result->y, pubkey.y, sizeof(pubkey.y)); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_create_ec_key_from_privkey(void) |
| { |
| std::array<uint8_t, 32> data = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, |
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 1, 2 }; |
| |
| bssl::UniquePtr<EC_KEY> key = |
| create_ec_key_from_privkey(data.data(), data.size()); |
| |
| TEST_NE(key.get(), nullptr, "%p"); |
| |
| /* There is nothing to check for the private key. */ |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_create_ec_key_from_privkey_fail(void) |
| { |
| std::array<uint8_t, 1> data = {}; |
| |
| bssl::UniquePtr<EC_KEY> key = |
| create_ec_key_from_privkey(data.data(), data.size()); |
| |
| TEST_EQ(key.get(), nullptr, "%p"); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_generate_ecdh_shared_secret(void) |
| { |
| struct fp_elliptic_curve_public_key pubkey = { |
| .x = { |
| 0x85, 0xAD, 0x35, 0x23, 0x05, 0x1E, 0x33, 0x3F, |
| 0xCA, 0xA7, 0xEA, 0xA5, 0x88, 0x33, 0x12, 0x95, |
| 0xA7, 0xB5, 0x98, 0x9F, 0x32, 0xEF, 0x7D, 0xE9, |
| 0xF8, 0x70, 0x14, 0x5E, 0x89, 0xCB, 0xDE, 0x1F, |
| }, |
| .y = { |
| 0xD1, 0xDC, 0x91, 0xC6, 0xE6, 0x5B, 0x1E, 0x3C, |
| 0x01, 0x6C, 0xE6, 0x50, 0x25, 0x5D, 0x89, 0xCF, |
| 0xB7, 0x8D, 0x88, 0xB9, 0x0D, 0x09, 0x41, 0xF1, |
| 0x09, 0x4F, 0x61, 0x55, 0x6C, 0xC4, 0x96, 0x6B, |
| }, |
| }; |
| |
| bssl::UniquePtr<EC_KEY> public_key = create_ec_key_from_pubkey(pubkey); |
| |
| TEST_NE(public_key.get(), nullptr, "%p"); |
| |
| std::array<uint8_t, 32> privkey = { 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, |
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 1, 2 }; |
| |
| bssl::UniquePtr<EC_KEY> private_key = |
| create_ec_key_from_privkey(privkey.data(), privkey.size()); |
| |
| TEST_NE(private_key.get(), nullptr, "%p"); |
| |
| std::array<uint8_t, 32> shared_secret; |
| TEST_EQ(generate_ecdh_shared_secret(*private_key, *public_key, |
| shared_secret), |
| EC_SUCCESS, "%d"); |
| |
| std::array<uint8_t, 32> expected_result = { |
| 0x46, 0x86, 0xca, 0x75, 0xce, 0xa1, 0xde, 0x23, |
| 0x48, 0xb3, 0x0b, 0xfc, 0xd7, 0xbe, 0x7a, 0xa0, |
| 0x33, 0x17, 0x6c, 0x97, 0xc6, 0xa7, 0x70, 0x7c, |
| 0xd4, 0x2c, 0xfd, 0xc0, 0xba, 0xc1, 0x47, 0x01, |
| }; |
| |
| TEST_ASSERT_ARRAY_EQ(shared_secret, expected_result, |
| shared_secret.size()); |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list |
| test_fp_generate_ecdh_shared_secret_without_kdf(void) |
| { |
| struct fp_elliptic_curve_public_key pubkey = { |
| .x = { |
| 0x85, 0xAD, 0x35, 0x23, 0x05, 0x1E, 0x33, 0x3F, |
| 0xCA, 0xA7, 0xEA, 0xA5, 0x88, 0x33, 0x12, 0x95, |
| 0xA7, 0xB5, 0x98, 0x9F, 0x32, 0xEF, 0x7D, 0xE9, |
| 0xF8, 0x70, 0x14, 0x5E, 0x89, 0xCB, 0xDE, 0x1F, |
| }, |
| .y = { |
| 0xD1, 0xDC, 0x91, 0xC6, 0xE6, 0x5B, 0x1E, 0x3C, |
| 0x01, 0x6C, 0xE6, 0x50, 0x25, 0x5D, 0x89, 0xCF, |
| 0xB7, 0x8D, 0x88, 0xB9, 0x0D, 0x09, 0x41, 0xF1, |
| 0x09, 0x4F, 0x61, 0x55, 0x6C, 0xC4, 0x96, 0x6B, |
| }, |
| }; |
| |
| bssl::UniquePtr<EC_KEY> public_key = create_ec_key_from_pubkey(pubkey); |
| |
| TEST_NE(public_key.get(), nullptr, "%p"); |
| |
| std::array<uint8_t, 32> privkey = { 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, |
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 1, 2 }; |
| |
| bssl::UniquePtr<EC_KEY> private_key = |
| create_ec_key_from_privkey(privkey.data(), privkey.size()); |
| |
| TEST_NE(private_key.get(), nullptr, "%p"); |
| |
| std::array<uint8_t, 32> shared_secret; |
| TEST_EQ(generate_ecdh_shared_secret_without_kdf( |
| *private_key, *public_key, shared_secret), |
| EC_SUCCESS, "%d"); |
| |
| std::array<uint8_t, 32> expected_result = { |
| 0x4d, 0x1f, 0x52, 0x54, 0xf8, 0x75, 0xf1, 0xee, |
| 0x00, 0x48, 0x6d, 0xe8, 0x50, 0x2f, 0xd6, 0xba, |
| 0xc4, 0x9e, 0xa4, 0xd3, 0x2c, 0x33, 0x50, 0x42, |
| 0x40, 0x91, 0xaf, 0xe8, 0xdd, 0x07, 0x90, 0x18, |
| }; |
| |
| TEST_ASSERT_ARRAY_EQ(shared_secret, expected_result, |
| shared_secret.size()); |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_generate_session_key(void) |
| { |
| std::array<uint8_t, 32> session_nonce = { 0, 1, 2, 3, 4, 5, 6, 7, |
| 8, 9, 0, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 0, 1, 2, 3, |
| 4, 5, 6, 7, 8, 9, 1, 2 }; |
| std::array<uint8_t, 32> gsc_nonce = { 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, |
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 1, 2 }; |
| std::array<uint8_t, 32> pairing_key = { 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, |
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| 2, 3, 4, 5, 6, 7, 8, 9, 1, 2 }; |
| |
| std::array<uint8_t, 32> gsc_session_key; |
| |
| TEST_EQ(generate_session_key(session_nonce, gsc_nonce, pairing_key, |
| gsc_session_key), |
| EC_SUCCESS, "%d"); |
| |
| std::array<uint8_t, 32> expected_gsc_session_key = { |
| 0x50, 0x98, 0xde, 0xbd, 0x86, 0xb5, 0xc9, 0x2b, |
| 0x21, 0xea, 0x0e, 0x6f, 0x47, 0x25, 0x9d, 0x25, |
| 0x92, 0x09, 0x5c, 0xbe, 0x0a, 0x57, 0x8b, 0xc8, |
| 0x8c, 0x03, 0xa3, 0x2f, 0x39, 0x08, 0x02, 0x4b, |
| }; |
| |
| TEST_ASSERT_ARRAY_EQ(gsc_session_key, expected_gsc_session_key, |
| gsc_session_key.size()); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_decrypt_data_with_session_key(void) |
| { |
| std::array<uint8_t, 32> session_key = { |
| 0x1a, 0x1a, 0x3c, 0x33, 0x7f, 0xae, 0xf9, 0x3e, |
| 0xa8, 0x7c, 0xe4, 0xec, 0xd9, 0xff, 0x45, 0x8a, |
| 0xb6, 0x2f, 0x75, 0xd5, 0xea, 0x25, 0x93, 0x36, |
| 0x60, 0xf1, 0xab, 0xd2, 0xf4, 0x9f, 0x22, 0x89, |
| }; |
| |
| std::array<uint8_t, 12> nonce = { |
| 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| }; |
| |
| std::array<uint8_t, 32> input = { |
| 0x44, 0x13, 0xb6, 0xb2, 0xc9, 0x6d, 0x22, 0x40, |
| 0xdc, 0x5e, 0x70, 0x63, 0x26, 0xcc, 0x4b, 0x0e, |
| 0x25, 0xc6, 0xa0, 0x25, 0x9e, 0x9e, 0x8c, 0x91, |
| 0xf6, 0x88, 0xa9, 0x81, 0xdf, 0xc2, 0x5c, 0x4b, |
| }; |
| |
| std::array<uint8_t, 9> aad = { |
| 't', 'e', 's', 't', '_', 'd', 'a', 't', 'a', |
| }; |
| |
| std::array<uint8_t, 16> tag = { |
| 0xd7, 0x37, 0xe2, 0x08, 0x39, 0x48, 0x75, 0x9e, |
| 0x51, 0x20, 0x44, 0xc7, 0xeb, 0x78, 0xf4, 0x43, |
| }; |
| |
| std::array<uint8_t, 32> output{}; |
| |
| TEST_EQ(decrypt_data_with_session_key(session_key, input, output, nonce, |
| tag, aad), |
| EC_SUCCESS, "%d"); |
| |
| std::array<uint8_t, 32> expected_output = { 0, 1, 2, 3, 4, 5, 6, 7, |
| 8, 9, 0, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 0, 1, 2, 3, |
| 4, 5, 6, 7, 8, 9, 1, 2 }; |
| |
| TEST_ASSERT_ARRAY_EQ(output, expected_output, output.size()); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_decrypt_data_with_session_key_fail(void) |
| { |
| std::array<uint8_t, 32> session_key = { |
| 0x1a, 0x1a, 0x3c, 0x33, 0x7f, 0xae, 0xf9, 0x3e, |
| 0xa8, 0x7c, 0xe4, 0xec, 0xd9, 0xff, 0x45, 0x8a, |
| 0xb6, 0x2f, 0x75, 0xd5, 0xea, 0x25, 0x93, 0x36, |
| 0x60, 0xf1, 0xab, 0xd2, 0xf4, 0x9f, 0x22, 0x89, |
| }; |
| |
| std::array<uint8_t, 12> nonce = { |
| 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, |
| }; |
| |
| std::array<uint8_t, 32> input = { |
| 0x44, 0x13, 0xb6, 0xb2, 0xc9, 0x6d, 0x22, 0x40, |
| 0xdc, 0x5e, 0x70, 0x63, 0x26, 0xcc, 0x4b, 0x0e, |
| 0x25, 0xc6, 0xa0, 0x25, 0x9e, 0x9e, 0x8c, 0x91, |
| 0xf6, 0x88, 0xa9, 0x81, 0xdf, 0xc2, 0x5c, 0x4b, |
| }; |
| |
| std::array<uint8_t, 9> aad = { |
| 't', 'e', 's', 't', '_', 'd', 'a', 't', 'a', |
| }; |
| |
| std::array<uint8_t, 16> tag = { |
| 0xd7, 0x37, 0xe2, 0x08, 0x39, 0x48, 0x75, 0x9e, |
| 0x51, 0x20, 0x44, 0xc7, 0xeb, 0x78, 0xf4, 0x43, |
| }; |
| |
| /* Output buffer size does not match input buffer size. */ |
| std::array<uint8_t, 31> output{}; |
| |
| TEST_EQ(decrypt_data_with_session_key(session_key, input, output, nonce, |
| tag, aad), |
| EC_ERROR_OVERFLOW, "%d"); |
| |
| return EC_SUCCESS; |
| } |
| |
| test_static enum ec_error_list test_fp_compute_message_signature(void) |
| { |
| constexpr std::array<uint8_t, 32> session_key = { |
| 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, |
| 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, |
| 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, |
| 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, |
| }; |
| constexpr std::array<uint8_t, 4> user_id = { 0x0a, 0x00, 0x00, 0x00 }; |
| constexpr std::array<uint8_t, 5> sender = { 'f', 'p', 'm', 'c', 'u' }; |
| constexpr std::array<uint8_t, 6> operation = { 'e', 'n', 'r', |
| 'o', 'l', 'l' }; |
| constexpr std::array<uint8_t, 32> challenge = { |
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, |
| 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, |
| }; |
| constexpr std::array<uint8_t, 32> expected_signature = { |
| 0x54, 0x3b, 0x7b, 0xca, 0x07, 0xeb, 0xa4, 0x03, |
| 0xc5, 0x3f, 0xdb, 0x88, 0x8a, 0x98, 0x42, 0x84, |
| 0xdf, 0x02, 0x2f, 0x28, 0x97, 0x7b, 0xef, 0xee, |
| 0x0a, 0x5b, 0xd4, 0x26, 0x58, 0x60, 0x76, 0xab, |
| }; |
| std::array<uint8_t, 32> actual_signature{}; |
| |
| TEST_EQ(compute_message_signature(session_key, user_id, sender, |
| operation, challenge, |
| actual_signature), |
| EC_SUCCESS, "%d"); |
| |
| TEST_ASSERT_ARRAY_EQ(expected_signature, actual_signature, |
| expected_signature.size()); |
| |
| return EC_SUCCESS; |
| } |
| |
| } // namespace |
| |
| void run_test(int argc, const char **argv) |
| { |
| RUN_TEST(test_fp_create_ec_key_from_pubkey); |
| RUN_TEST(test_fp_create_ec_key_from_pubkey_fail); |
| RUN_TEST(test_fp_create_ec_key_from_privkey); |
| RUN_TEST(test_fp_create_ec_key_from_privkey_fail); |
| RUN_TEST(test_fp_create_pubkey_from_ec_key); |
| RUN_TEST(test_fp_generate_ecdh_shared_secret); |
| RUN_TEST(test_fp_generate_ecdh_shared_secret_without_kdf); |
| RUN_TEST(test_fp_generate_session_key); |
| RUN_TEST(test_fp_decrypt_data_with_session_key); |
| RUN_TEST(test_fp_decrypt_data_with_session_key_fail); |
| RUN_TEST(test_fp_compute_message_signature); |
| test_print_result(); |
| } |