Rename internal function psa_key_production_parameters_are_default

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2024-06-20 17:19:58 +02:00
parent 472c10f4a5
commit 52504f8568
3 changed files with 5 additions and 5 deletions

View File

@ -6415,7 +6415,7 @@ exit:
static const psa_custom_key_parameters_t default_custom_production = static const psa_custom_key_parameters_t default_custom_production =
PSA_KEY_PRODUCTION_PARAMETERS_INIT; PSA_KEY_PRODUCTION_PARAMETERS_INIT;
int psa_key_production_parameters_are_default( int psa_custom_key_parameters_are_default(
const psa_custom_key_parameters_t *custom, const psa_custom_key_parameters_t *custom,
size_t custom_data_length) size_t custom_data_length)
{ {
@ -6449,7 +6449,7 @@ psa_status_t psa_key_derivation_output_key_custom(
} }
(void) custom_data; /* We only accept 0-length data */ (void) custom_data; /* We only accept 0-length data */
if (!psa_key_production_parameters_are_default(custom, custom_data_length)) { if (!psa_custom_key_parameters_are_default(custom, custom_data_length)) {
return PSA_ERROR_INVALID_ARGUMENT; return PSA_ERROR_INVALID_ARGUMENT;
} }
@ -7972,7 +7972,7 @@ psa_status_t psa_generate_key_custom(const psa_key_attributes_t *attributes,
} }
} else } else
#endif #endif
if (!psa_key_production_parameters_are_default(custom, custom_data_length)) { if (!psa_custom_key_parameters_are_default(custom, custom_data_length)) {
return PSA_ERROR_INVALID_ARGUMENT; return PSA_ERROR_INVALID_ARGUMENT;
} }

View File

@ -352,7 +352,7 @@ psa_status_t psa_export_public_key_internal(
* \param custom_data_length Size of the associated variable-length data * \param custom_data_length Size of the associated variable-length data
* in bytes. * in bytes.
*/ */
int psa_key_production_parameters_are_default( int psa_custom_key_parameters_are_default(
const psa_custom_key_parameters_t *custom, const psa_custom_key_parameters_t *custom,
size_t custom_data_length); size_t custom_data_length);

View File

@ -741,7 +741,7 @@ static inline psa_status_t psa_driver_wrapper_generate_key(
#if defined(PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE) #if defined(PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE)
int is_default_production = int is_default_production =
psa_key_production_parameters_are_default(custom, custom_data_length); psa_custom_key_parameters_are_default(custom, custom_data_length);
if( location != PSA_KEY_LOCATION_LOCAL_STORAGE && !is_default_production ) if( location != PSA_KEY_LOCATION_LOCAL_STORAGE && !is_default_production )
{ {
/* We don't support passing custom production parameters /* We don't support passing custom production parameters