2023-12-18 16:15:44 +01:00
|
|
|
Features
|
2023-12-28 12:15:45 +01:00
|
|
|
* If a cipher or AEAD mechanism has a PSA driver, you can now build the
|
2024-01-08 10:47:46 +01:00
|
|
|
library without the corresponding built-in implementation. Generally
|
|
|
|
speaking that requires both the key type and algorithm to be accelerated
|
2024-01-10 09:43:06 +01:00
|
|
|
or they'll both be built in. However, for CCM and GCM the built-in
|
2024-01-08 10:47:46 +01:00
|
|
|
implementation is able to take advantage of a driver that only
|
|
|
|
accelerates the key type (that is, the block cipher primitive). See
|
2023-12-29 15:46:17 +01:00
|
|
|
docs/driver-only-builds.md for full details and current limitations.
|
2023-12-28 12:15:45 +01:00
|
|
|
* The CTR_DRBG module will now use AES from a PSA driver if MBEDTLS_AES_C is
|
|
|
|
disabled. This requires PSA_WANT_ALG_ECB_NO_PADDING in addition to
|
|
|
|
MBEDTLS_PSA_CRYPTO_C and PSA_WANT_KEY_TYPE_AES.
|