From fc142045a4dc4c8a36e95f358fb30d3a51e8094d Mon Sep 17 00:00:00 2001 From: zhanghongyu Date: Sun, 23 Mar 2025 21:07:59 +0800 Subject: [PATCH] mbedtls: add MBEDTLS_SSL_COOKIE_C to Kconfig for manual configuration current defconfig and mbedtls_config.h can not enable the definition of MBEDTLS_SSL_COOKIE_C. Signed-off-by: zhanghongyu --- crypto/mbedtls/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crypto/mbedtls/Kconfig b/crypto/mbedtls/Kconfig index 1bee06c89..9870a1b9e 100644 --- a/crypto/mbedtls/Kconfig +++ b/crypto/mbedtls/Kconfig @@ -639,6 +639,10 @@ config MBEDTLS_SSL_CACHE_C bool "Enable simple SSL cache implementation." default y +config MBEDTLS_SSL_COOKIE_C + bool "Enable SSL cookie implementation." + default y + config MBEDTLS_SSL_TICKET_C bool "Enable an implementation of TLS server-side callbacks for session tickets." depends on (MBEDTLS_CIPHER_C || MBEDTLS_USE_PSA_CRYPTO) && \