2025-09-09 18:54:52 +01:00
|
|
|
API changes
|
|
|
|
|
* The PSA and Mbed TLS error spaces are now unified. mbedtls_xxx()
|
|
|
|
|
functions can now return PSA_ERROR_xxx values.
|
|
|
|
|
There is no longer a distinction between "low-level" and "high-level"
|
|
|
|
|
Mbed TLS error codes.
|
|
|
|
|
This will not affect most applications since the error values are
|
|
|
|
|
between -32767 and -1 as before.
|
|
|
|
|
|
|
|
|
|
Removals
|
2025-09-25 15:38:14 +01:00
|
|
|
* Remove mbedtls_low_level_strerr() and mbedtls_high_level_strerr(),
|
2025-09-09 18:54:52 +01:00
|
|
|
since these concepts no longer exists. There is just mbedtls_strerror().
|
2025-09-25 15:38:14 +01:00
|
|
|
|