From 14f85a6c4e1e9d6b3e25ea7f9cd24c44b7639b46 Mon Sep 17 00:00:00 2001 From: Dong Heng Date: Fri, 27 Dec 2019 14:14:40 +0800 Subject: [PATCH] fix(mbedtls): fix option dependence of "MBEDTLS_SERVER_SSL_SESSION_TICKETS" MBEDTLS_SERVER_SSL_SESSION_TICKETS -> MBEDTLS_CIPHER_MODE_AEAD -> MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C --- components/mbedtls/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/components/mbedtls/Kconfig b/components/mbedtls/Kconfig index a1c396cf..3f69ef8d 100644 --- a/components/mbedtls/Kconfig +++ b/components/mbedtls/Kconfig @@ -366,6 +366,7 @@ menu "mbedTLS" bool "TLS: Server Support for RFC 5077 SSL session tickets" default y depends on MBEDTLS_TLS_ENABLED + depends on MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C help Server support for RFC 5077 session tickets. See mbedTLS documentation for more details. Disabling this option will save some code size.