mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 03:55:44 +01:00
Don't declare a parameter as const
An earlier commit fixed this for psa_hash_compare. psa_mac_verify had the same flaw.
This commit is contained in:
parent
88e08464f5
commit
13faa2d920
@ -1300,7 +1300,7 @@ psa_status_t psa_mac_verify(psa_key_handle_t handle,
|
||||
const uint8_t *input,
|
||||
size_t input_length,
|
||||
const uint8_t *mac,
|
||||
const size_t mac_length);
|
||||
size_t mac_length);
|
||||
|
||||
/** The type of the state data structure for multipart MAC operations.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user