From 9e638f37152d1b673ac25af00bcb4645da8f358f 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 a8117c5f..1ebc60fe 100644 --- a/components/mbedtls/Kconfig +++ b/components/mbedtls/Kconfig @@ -321,6 +321,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.