mbedtls_config: update documentation for CIPHER_C and CRYPTO_C

Adding auto-enablement sections.

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
Valerio Setti 2023-12-28 10:04:51 +01:00
parent 9772642b8c
commit d5cab81405

View File

@ -2579,6 +2579,8 @@
* library/ssl_ciphersuites.c * library/ssl_ciphersuites.c
* library/ssl_msg.c * library/ssl_msg.c
* library/ssl_ticket.c (unless MBEDTLS_USE_PSA_CRYPTO is enabled) * library/ssl_ticket.c (unless MBEDTLS_USE_PSA_CRYPTO is enabled)
* Auto-enabled by: MBEDTLS_PSA_CRYPTO_C depending on which ciphers are enabled
* (see the documentation of that option for details).
* *
* Uncomment to enable generic cipher wrappers. * Uncomment to enable generic cipher wrappers.
*/ */
@ -3167,9 +3169,10 @@
* *
* Requires: either MBEDTLS_CTR_DRBG_C and MBEDTLS_ENTROPY_C, * Requires: either MBEDTLS_CTR_DRBG_C and MBEDTLS_ENTROPY_C,
* or MBEDTLS_HMAC_DRBG_C and MBEDTLS_ENTROPY_C, * or MBEDTLS_HMAC_DRBG_C and MBEDTLS_ENTROPY_C,
* or MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG; * or MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG.
* MBEDTLS_CIPHER_C if any unauthenticated cipher is builtin in PSA. * Auto-enables: MBEDTLS_CIPHER_C if any unauthenticated (ie, non-AEAD) cipher
* * is enabled in PSA (unless it's fully accelerated, see
* docs/driver-only-builds.md about that).
*/ */
#define MBEDTLS_PSA_CRYPTO_C #define MBEDTLS_PSA_CRYPTO_C