Manuel Pégourié-Gonnard | a572781 | 2024-01-08 10:47:46 +0100 | [diff] [blame] | 1 | Features |
| 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é-Gonnard | 0f45a1a | 2024-01-10 09:43:06 +0100 | [diff] [blame] | 5 | or they'll both be built in. However, for CCM and GCM the built-in |
Manuel Pégourié-Gonnard | a572781 | 2024-01-08 10:47:46 +0100 | [diff] [blame] | 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. |