blob: 331b2f997c943171e5fceb3b5e145b0ecb2f9a45 [file] [log] [blame]
Manuel Pégourié-Gonnarda5727812024-01-08 10:47:46 +01001Features
2 * If a cipher or AEAD mechanism has a PSA driver, you can now build the
3 library without the corresponding built-in implementation. Generally
4 speaking that requires both the key type and algorithm to be accelerated
Manuel Pégourié-Gonnard0f45a1a2024-01-10 09:43:06 +01005 or they'll both be built in. However, for CCM and GCM the built-in
Manuel Pégourié-Gonnarda5727812024-01-08 10:47:46 +01006 implementation is able to take advantage of a driver that only
7 accelerates the key type (that is, the block cipher primitive). See
8 docs/driver-only-builds.md for full details and current limitations.
9 * The CTR_DRBG module will now use AES from a PSA driver if MBEDTLS_AES_C is
10 disabled. This requires PSA_WANT_ALG_ECB_NO_PADDING in addition to
11 MBEDTLS_PSA_CRYPTO_C and PSA_WANT_KEY_TYPE_AES.