2024-01-24 13:55:56 +01:00
|
|
|
Default behavior changes
|
2024-02-01 15:50:44 +01:00
|
|
|
* psa_import_key() now only accepts RSA keys in the PSA standard formats.
|
|
|
|
The undocumented ability to import other formats (PKCS#8, SubjectPublicKey,
|
|
|
|
PEM) accepted by the pkparse module has been removed. Applications that
|
2024-02-02 13:46:02 +01:00
|
|
|
need these formats can call mbedtls_pk_parse_{public,}key() followed by
|
2024-02-01 15:50:44 +01:00
|
|
|
mbedtls_pk_import_into_psa().
|
2024-01-24 13:55:56 +01:00
|
|
|
|
2024-02-01 15:50:44 +01:00
|
|
|
Changes
|
|
|
|
* RSA support in PSA no longer auto-enables the pkparse and pkwrite modules,
|
|
|
|
saving code size when those are not otherwise enabled.
|