2024-06-06 19:38:11 +00:00
|
|
|
API changes
|
|
|
|
* The experimental functions psa_generate_key_ext() and
|
2024-07-31 14:59:41 +00:00
|
|
|
psa_key_derivation_output_key_ext() have been replaced by
|
2024-06-06 19:38:11 +00:00
|
|
|
psa_generate_key_custom() and psa_key_derivation_output_key_custom().
|
|
|
|
They have almost exactly the same interface, but the variable-length
|
|
|
|
data is passed in a separate parameter instead of a flexible array
|
2024-07-31 14:59:41 +00:00
|
|
|
member. This resolves a build failure under C++ compilers that do not
|
|
|
|
support flexible array members (a C99 feature not adopted by C++).
|
|
|
|
Fixes #9020.
|