|
| 1 | +/* |
| 2 | + * Copyright (c) 2025 Nordic Semiconductor ASA |
| 3 | + * |
| 4 | + * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause |
| 5 | + */ |
| 6 | + |
| 7 | + |
| 8 | +#include "decrypt_test_utils.h" |
| 9 | + |
| 10 | +/* This module holds common utilities for SUIT decrypt filter tests. |
| 11 | + * It defines default encryption key data, plaintext and ciphertext along with other |
| 12 | + * suit_encryption_info struct members that can be used while testing. |
| 13 | + * |
| 14 | + * WARNING: All of the const values defined in this module CAN be changed freely. |
| 15 | + * This also means that any test depending on them should expect it. |
| 16 | + */ |
| 17 | + |
| 18 | + |
| 19 | +/** |
| 20 | + * The master key used by these tests can be imported into the local KMS backend by running: |
| 21 | + * |
| 22 | + * nrfkms import_keyvalue -k TEST_AES_KEY -t aes -v aHWJdIkl5hdXw4SS1nTdVYE/q7ycMOZm2mR6qx/KvKw= |
| 23 | + * |
| 24 | + * The KEK below is derived from context "test" |
| 25 | + * To acquire it run: |
| 26 | + * nrfkms export_derived -k TEST_AES_KEY -c test --format native |
| 27 | + * hexdump -e '16/1 "0x%02x, " "\n"' kms_output/derived_key_native_test_from_TEST_AES_KEY.bin |
| 28 | + */ |
| 29 | +const uint8_t decrypt_test_key_data[] = { |
| 30 | + 0xf8, 0xfa, 0x8e, 0x7b, 0xed, 0x32, 0xd0, 0xc7, 0x15, 0x1f, 0xd9, 0xab, 0x0d, |
| 31 | + 0x8d, 0xed, 0x95, 0x26, 0xa8, 0x6a, 0x15, 0x34, 0x16, 0x01, 0xcf, 0x9c, 0x6b, |
| 32 | + 0xba, 0x00, 0x6a, 0xab, 0xaa, 0x9a, |
| 33 | +}; |
| 34 | + |
| 35 | +const uint8_t decrypt_test_plaintext[] = { |
| 36 | + "This is a sample plaintext for testing the decryption filter", |
| 37 | +}; |
| 38 | + |
| 39 | +const uint8_t decrypt_test_aad[] = { |
| 40 | + "sample aad" |
| 41 | +}; |
| 42 | + |
| 43 | +/** |
| 44 | + * Encryption and using wrapped CEK achieved by running: |
| 45 | + * |
| 46 | + * echo "This is a sample plaintext for testing the decryption filter" > plaintext.txt |
| 47 | + * nrfkms wrap -k TEST_AES_KEY -c test -f plaintext.txt --format native -t aes --aad "sample aad" |
| 48 | + * |
| 49 | + * Wrapped CEK stored in the resulting wrapped_aek-aes-... file |
| 50 | + * |
| 51 | + * Ciphertext and NONCE (IV) taken from the encrypted_asset-... file, which is in format |
| 52 | + * |nonce (12 bytes)|ciphertext|tag (16 bytes)| |
| 53 | + * |
| 54 | + */ |
| 55 | +const uint8_t decrypt_test_wrapped_cek[] = { |
| 56 | + 0x7d, 0xd6, 0xf4, 0xd3, 0x52, 0x44, 0x5a, 0x3a, 0x67, 0xb8, 0xcc, |
| 57 | + 0x74, 0x5b, 0x4b, 0x6f, 0x70, 0x62, 0xc3, 0xf2, 0x7b, 0x6b, 0x14, |
| 58 | + 0xf1, 0x06, 0x57, 0xa3, 0x68, 0x32, 0x44, 0xc3, 0x85, 0x77, 0x86, |
| 59 | + 0xe7, 0xda, 0x15, 0xbf, 0xf8, 0x9e, 0x63, |
| 60 | +}; |
| 61 | + |
| 62 | +const uint8_t decrypt_test_ciphertext_aes_kw[] = { |
| 63 | + /* tag (16 bytes) */ |
| 64 | + 0xdc, 0xe6, 0x95, 0xac, 0x0f, 0x61, 0x87, 0x17, 0x51, 0x48, 0xb4, 0xa1, |
| 65 | + 0x8e, 0x09, 0x89, 0xb4, |
| 66 | + /* ciphertext */ |
| 67 | + 0x8b, 0xfb, 0xd9, 0xe4, 0xcf, 0xde, 0xf8, 0xcf, 0xe5, 0x69, 0x9d, 0x6d, |
| 68 | + 0x92, 0x8a, 0x04, 0xf8, 0x26, 0x22, 0xd5, 0xd8, 0xe8, 0x77, 0x18, 0x5a, |
| 69 | + 0x01, 0x13, 0xba, 0xd5, 0x23, 0x72, 0xae, 0x80, 0x44, 0xed, 0xea, 0xdf, |
| 70 | + 0x74, 0x79, 0x8a, 0x83, 0x52, 0x72, 0x2f, 0x43, 0x06, 0xe9, 0xd4, 0xbb, |
| 71 | + 0x54, 0x8a, 0x0d, 0xea, 0x7f, 0xe6, 0x48, 0xf0, 0xfd, 0x0e, 0xbb, 0xaa, |
| 72 | + 0xa3, |
| 73 | +}; |
| 74 | + |
| 75 | +const uint8_t decrypt_test_iv_aes_kw[] = { |
| 76 | + 0x61, 0xb4, 0x70, 0x53, 0xa5, 0xe2, 0x05, 0x68, 0xfe, 0x77, 0x12, 0x89, |
| 77 | +}; |
| 78 | + |
| 79 | +/** |
| 80 | + * Encryption without wrapping CEK achieved by running: |
| 81 | + * |
| 82 | + * echo "This is a sample plaintext for testing the decryption filter" > plaintext.txt |
| 83 | + * nrfkms encrypt -k TEST_AES_KEY -c test -f plaintext.txt --aad "sample aad" --format native |
| 84 | + * |
| 85 | + * Ciphertext and NONCE (IV) taken from the encrypted_data_using_TEST_AES_KEY-test.bin file, |
| 86 | + * which is in format |nonce (12 bytes)|tag (16 bytes)|ciphertext| |
| 87 | + */ |
| 88 | + |
| 89 | +const uint8_t decrypt_test_ciphertext_direct[] = { |
| 90 | + /* tag (16 bytes) */ |
| 91 | + 0x4d, 0x21, 0x30, 0xb7, 0xce, 0x8a, 0xd6, 0x00, 0xe4, 0x04, 0xbb, 0x32, |
| 92 | + 0x72, 0x7a, 0xbb, 0x7c, |
| 93 | + /* ciphertext */ |
| 94 | + 0xf0, 0x72, 0xdb, 0x63, 0x03, 0xdd, 0x24, 0x69, |
| 95 | + 0xd4, 0xbf, 0xd7, 0xa0, 0xec, 0xfa, 0x66, 0x58, 0x95, 0x2b, 0xc1, 0xc2, |
| 96 | + 0x9d, 0x82, 0x02, 0x1a, 0xd7, 0x5b, 0xc0, 0x01, 0xce, 0x0b, 0x79, 0x53, |
| 97 | + 0xe7, 0xdb, 0x0d, 0x35, 0xab, 0xef, 0x81, 0xc8, 0x68, 0xc5, 0xa7, 0x22, |
| 98 | + 0x90, 0xea, 0xd0, 0x7f, 0x36, 0xed, 0x14, 0xbe, 0x30, 0xf2, 0x81, 0x56, |
| 99 | + 0x7e, 0x2e, 0x5f, 0xd8, 0x7c, |
| 100 | +}; |
| 101 | + |
| 102 | +const uint8_t decrypt_test_iv_direct[] = { |
| 103 | + 0x60, 0x90, 0x6d, 0xb2, 0xfe, 0xc3, 0xc8, 0x5a, 0xf0, 0x28, 0xb1, 0xb6, |
| 104 | +}; |
| 105 | + |
| 106 | +const suit_manifest_class_id_t decrypt_test_sample_class_id = { |
| 107 | + {0x5b, 0x46, 0x9f, 0xd1, 0x90, 0xee, 0x53, 0x9c, 0xa3, 0x18, 0x68, 0x1b, 0x03, 0x69, 0x5e, |
| 108 | + 0x36}}; |
| 109 | + |
| 110 | +psa_status_t decrypt_test_init_encryption_key(const uint8_t *data, size_t size, |
| 111 | + psa_key_id_t *key_id, psa_key_id_t alg, uint8_t *cbor_key_id) |
| 112 | +{ |
| 113 | + psa_status_t status; |
| 114 | + |
| 115 | + /* Configure the key attributes */ |
| 116 | + psa_key_attributes_t key_attributes = PSA_KEY_ATTRIBUTES_INIT; |
| 117 | + |
| 118 | + psa_set_key_usage_flags(&key_attributes, PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT); |
| 119 | + psa_set_key_lifetime(&key_attributes, PSA_KEY_LIFETIME_VOLATILE); |
| 120 | + psa_set_key_algorithm(&key_attributes, alg); |
| 121 | + psa_set_key_type(&key_attributes, PSA_KEY_TYPE_AES); |
| 122 | + psa_set_key_bits(&key_attributes, 256); |
| 123 | + |
| 124 | + status = psa_import_key(&key_attributes, data, size, key_id); |
| 125 | + |
| 126 | + /* Encode KEK key ID as CBOR unsigned int */ |
| 127 | + cbor_key_id[1] = ((*key_id >> 24) & 0xFF); |
| 128 | + cbor_key_id[2] = ((*key_id >> 16) & 0xFF); |
| 129 | + cbor_key_id[3] = ((*key_id >> 8) & 0xFF); |
| 130 | + cbor_key_id[4] = ((*key_id >> 0) & 0xFF); |
| 131 | + |
| 132 | + return status; |
| 133 | +} |
0 commit comments