mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-26 01:35:29 +00:00
Add missing const on policy_get_xxx function parameter
This commit is contained in:
parent
7256e6c9a4
commit
aa7bc47f73
|
@ -1205,10 +1205,10 @@ void psa_key_policy_set_usage(psa_key_policy_t *policy,
|
||||||
psa_algorithm_t alg);
|
psa_algorithm_t alg);
|
||||||
|
|
||||||
/** \brief Retrieve the usage field of a policy structure. */
|
/** \brief Retrieve the usage field of a policy structure. */
|
||||||
psa_key_usage_t psa_key_policy_get_usage(psa_key_policy_t *policy);
|
psa_key_usage_t psa_key_policy_get_usage(const psa_key_policy_t *policy);
|
||||||
|
|
||||||
/** \brief Retrieve the algorithm field of a policy structure. */
|
/** \brief Retrieve the algorithm field of a policy structure. */
|
||||||
psa_algorithm_t psa_key_policy_get_algorithm(psa_key_policy_t *policy);
|
psa_algorithm_t psa_key_policy_get_algorithm(const psa_key_policy_t *policy);
|
||||||
|
|
||||||
/** \brief Set the usage policy on a key slot.
|
/** \brief Set the usage policy on a key slot.
|
||||||
*
|
*
|
||||||
|
|
|
@ -2585,12 +2585,12 @@ void psa_key_policy_set_usage( psa_key_policy_t *policy,
|
||||||
policy->alg = alg;
|
policy->alg = alg;
|
||||||
}
|
}
|
||||||
|
|
||||||
psa_key_usage_t psa_key_policy_get_usage( psa_key_policy_t *policy )
|
psa_key_usage_t psa_key_policy_get_usage( const psa_key_policy_t *policy )
|
||||||
{
|
{
|
||||||
return( policy->usage );
|
return( policy->usage );
|
||||||
}
|
}
|
||||||
|
|
||||||
psa_algorithm_t psa_key_policy_get_algorithm( psa_key_policy_t *policy )
|
psa_algorithm_t psa_key_policy_get_algorithm( const psa_key_policy_t *policy )
|
||||||
{
|
{
|
||||||
return( policy->alg );
|
return( policy->alg );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue