Mbed-TLS / mbedtls

An open source, portable, easy to use, readable and flexible TLS library, and reference implementation of the PSA Cryptography API. Releases are on a varying cadence, typically around 3 - 6 months between releases.
https://www.trustedfirmware.org/projects/mbed-tls/
Other
5.02k stars 2.5k forks source link

psa: fix parameters' names of psa_key_derivation_verify_bytes() #9308

Open valeriosetti opened 4 days ago

valeriosetti commented 4 days ago

Description

PSA buffers and their length should follow a pattern for which the latter is named after the former as _length, but this was not the case for psa_key_derivation_verify_bytes().

This makes life of crypto.h parsers (for automatic code generation) harder. This commit aims at solving this problem.

PR checklist