mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Don't access psa_key_attributes_t.core
Access the fields of `psa_key_attributes_t` directly rather than through the `core` field. This makes the `core` field obsolete. This commit is fully automated: ``` git ls-files '*.h' '*.c' '*.function' '*.jinja' | xargs perl -l -i -pe '$core = qr/\b(core\b|MBEDTLS_PRIVATE\(core\))/; s/->$core\./->/g; s/&(\w+)\.$core\./&$1./g; s/(\w+)\.$core/$1/g' ``` Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
@ -49,7 +49,7 @@ psa_status_t sign_hash(
|
||||
size_t signature_size,
|
||||
size_t *signature_length)
|
||||
{
|
||||
if (attributes->core.type == PSA_KEY_TYPE_RSA_KEY_PAIR) {
|
||||
if (attributes->type == PSA_KEY_TYPE_RSA_KEY_PAIR) {
|
||||
if (PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) ||
|
||||
PSA_ALG_IS_RSA_PSS(alg)) {
|
||||
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
||||
@ -71,7 +71,7 @@ psa_status_t sign_hash(
|
||||
} else {
|
||||
return PSA_ERROR_INVALID_ARGUMENT;
|
||||
}
|
||||
} else if (PSA_KEY_TYPE_IS_ECC(attributes->core.type)) {
|
||||
} else if (PSA_KEY_TYPE_IS_ECC(attributes->type)) {
|
||||
if (PSA_ALG_IS_ECDSA(alg)) {
|
||||
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
||||
(defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
|
||||
@ -116,7 +116,7 @@ psa_status_t verify_hash(
|
||||
const uint8_t *signature,
|
||||
size_t signature_length)
|
||||
{
|
||||
if (PSA_KEY_TYPE_IS_RSA(attributes->core.type)) {
|
||||
if (PSA_KEY_TYPE_IS_RSA(attributes->type)) {
|
||||
if (PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) ||
|
||||
PSA_ALG_IS_RSA_PSS(alg)) {
|
||||
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
||||
@ -138,7 +138,7 @@ psa_status_t verify_hash(
|
||||
} else {
|
||||
return PSA_ERROR_INVALID_ARGUMENT;
|
||||
}
|
||||
} else if (PSA_KEY_TYPE_IS_ECC(attributes->core.type)) {
|
||||
} else if (PSA_KEY_TYPE_IS_ECC(attributes->type)) {
|
||||
if (PSA_ALG_IS_ECDSA(alg)) {
|
||||
#if defined(MBEDTLS_TEST_LIBTESTDRIVER1) && \
|
||||
(defined(LIBTESTDRIVER1_MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
|
||||
|
@ -61,7 +61,7 @@ void format_storage_data_check(data_t *key_data,
|
||||
|
||||
TEST_CALLOC(file_data, file_data_length);
|
||||
psa_format_key_data_for_storage(key_data->x, key_data->len,
|
||||
&attributes.core,
|
||||
&attributes,
|
||||
file_data);
|
||||
|
||||
TEST_MEMORY_COMPARE(expected_file_data->x, expected_file_data->len,
|
||||
@ -90,7 +90,7 @@ void parse_storage_data_check(data_t *file_data,
|
||||
|
||||
status = psa_parse_key_data_from_storage(file_data->x, file_data->len,
|
||||
&key_data, &key_data_length,
|
||||
&attributes.core);
|
||||
&attributes);
|
||||
|
||||
TEST_EQUAL(status, expected_status);
|
||||
if (status != PSA_SUCCESS) {
|
||||
|
@ -952,7 +952,7 @@ void key_creation_import_export(int lifetime_arg, int min_slot, int restart)
|
||||
psa_set_key_slot_number(&attributes, min_slot);
|
||||
|
||||
if (PSA_KEY_LIFETIME_IS_VOLATILE(lifetime)) {
|
||||
attributes.core.id = returned_id;
|
||||
attributes.id = returned_id;
|
||||
} else {
|
||||
psa_set_key_id(&attributes, returned_id);
|
||||
}
|
||||
|
@ -359,19 +359,19 @@ void mock_import(int mock_alloc_return_value,
|
||||
|
||||
if (mock_alloc_return_value == PSA_SUCCESS) {
|
||||
TEST_ASSERT(mbedtls_svc_key_id_equal(
|
||||
mock_import_data.attributes.core.id, id));
|
||||
mock_import_data.attributes.id, id));
|
||||
} else {
|
||||
TEST_ASSERT(MBEDTLS_SVC_KEY_ID_GET_KEY_ID(
|
||||
mock_import_data.attributes.core.id) == 0);
|
||||
mock_import_data.attributes.id) == 0);
|
||||
TEST_ASSERT(MBEDTLS_SVC_KEY_ID_GET_OWNER_ID(
|
||||
mock_import_data.attributes.core.id) == 0);
|
||||
mock_import_data.attributes.id) == 0);
|
||||
}
|
||||
|
||||
TEST_ASSERT(mock_import_data.attributes.core.lifetime ==
|
||||
TEST_ASSERT(mock_import_data.attributes.lifetime ==
|
||||
(mock_alloc_return_value == PSA_SUCCESS ? lifetime : 0));
|
||||
TEST_ASSERT(mock_import_data.attributes.core.policy.usage ==
|
||||
TEST_ASSERT(mock_import_data.attributes.policy.usage ==
|
||||
(mock_alloc_return_value == PSA_SUCCESS ? PSA_KEY_USAGE_EXPORT : 0));
|
||||
TEST_ASSERT(mock_import_data.attributes.core.type ==
|
||||
TEST_ASSERT(mock_import_data.attributes.type ==
|
||||
(mock_alloc_return_value == PSA_SUCCESS ? PSA_KEY_TYPE_RAW_DATA : 0));
|
||||
|
||||
if (expected_result == PSA_SUCCESS) {
|
||||
@ -474,19 +474,19 @@ void mock_generate(int mock_alloc_return_value,
|
||||
|
||||
if (mock_alloc_return_value == PSA_SUCCESS) {
|
||||
TEST_ASSERT(mbedtls_svc_key_id_equal(
|
||||
mock_generate_data.attributes.core.id, id));
|
||||
mock_generate_data.attributes.id, id));
|
||||
} else {
|
||||
TEST_ASSERT(MBEDTLS_SVC_KEY_ID_GET_KEY_ID(
|
||||
mock_generate_data.attributes.core.id) == 0);
|
||||
mock_generate_data.attributes.id) == 0);
|
||||
TEST_ASSERT(MBEDTLS_SVC_KEY_ID_GET_OWNER_ID(
|
||||
mock_generate_data.attributes.core.id) == 0);
|
||||
mock_generate_data.attributes.id) == 0);
|
||||
}
|
||||
|
||||
TEST_ASSERT(mock_generate_data.attributes.core.lifetime ==
|
||||
TEST_ASSERT(mock_generate_data.attributes.lifetime ==
|
||||
(mock_alloc_return_value == PSA_SUCCESS ? lifetime : 0));
|
||||
TEST_ASSERT(mock_generate_data.attributes.core.policy.usage ==
|
||||
TEST_ASSERT(mock_generate_data.attributes.policy.usage ==
|
||||
(mock_alloc_return_value == PSA_SUCCESS ? PSA_KEY_USAGE_EXPORT : 0));
|
||||
TEST_ASSERT(mock_generate_data.attributes.core.type ==
|
||||
TEST_ASSERT(mock_generate_data.attributes.type ==
|
||||
(mock_alloc_return_value == PSA_SUCCESS ? PSA_KEY_TYPE_RAW_DATA : 0));
|
||||
|
||||
if (expected_result == PSA_SUCCESS) {
|
||||
|
@ -458,7 +458,7 @@ void create_fail(int lifetime_arg, int id_arg,
|
||||
* PSA key attributes APIs thus accessing to the attributes
|
||||
* directly.
|
||||
*/
|
||||
attributes.core.id = id;
|
||||
attributes.id = id;
|
||||
} else {
|
||||
psa_set_key_id(&attributes, id);
|
||||
}
|
||||
@ -992,7 +992,7 @@ void non_reusable_key_slots_integrity_in_case_of_key_slot_starvation()
|
||||
* Check that we can now access the persistent key again.
|
||||
*/
|
||||
PSA_ASSERT(psa_get_key_attributes(persistent_key, &attributes));
|
||||
TEST_ASSERT(mbedtls_svc_key_id_equal(attributes.core.id,
|
||||
TEST_ASSERT(mbedtls_svc_key_id_equal(attributes.id,
|
||||
persistent_key));
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user