blob: e2a946c91693448e6d677a7dc3ae69c660f4041d [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
5 or they'll both be built in. However for CCM and GCM the built-in
6 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.