commit | 13faa2d920b6dd8f1f0665f5ef30a838351d2557 | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Thu Jan 30 16:32:21 2020 +0100 |
committer | Gilles Peskine <Gilles.Peskine@arm.com> | Thu Jan 30 16:32:21 2020 +0100 |
tree | bf9f88c33a77bc3e2c867aea30157b49f6fad38a | |
parent | 88e08464f5bb525048c4f74a3242a8bc5aff75c5 [diff] [blame] |
Don't declare a parameter as const An earlier commit fixed this for psa_hash_compare. psa_mac_verify had the same flaw.
diff --git a/include/psa/crypto.h b/include/psa/crypto.h index 3522818..07be2b9 100644 --- a/include/psa/crypto.h +++ b/include/psa/crypto.h
@@ -1300,7 +1300,7 @@ 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. *