From aeeb12eb83d669ea66dc5315cc490662bbbbd967 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sat, 22 Oct 2022 13:06:58 -0400 Subject: [PATCH] libmbedtls: enable crypto algorithms for hostap enable additional crypto algorithms for hostap hostap uses local implementations if not provided by crypto library, so might as well enable in the crypto library for shared use by others. Signed-off-by: Glenn Strauss --- package/libs/mbedtls/Config.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package/libs/mbedtls/Config.in b/package/libs/mbedtls/Config.in index 58843d08ce..067a9aeb78 100644 --- a/package/libs/mbedtls/Config.in +++ b/package/libs/mbedtls/Config.in @@ -17,20 +17,20 @@ config MBEDTLS_CCM_C default n config MBEDTLS_CMAC_C - bool "MBEDTLS_CMAC_C" - default n + bool "MBEDTLS_CMAC_C (old but used by hostapd)" + default y config MBEDTLS_DES_C - bool "MBEDTLS_DES_C" - default n + bool "MBEDTLS_DES_C (old but used by hostapd)" + default y config MBEDTLS_GCM_C bool "MBEDTLS_GCM_C" default y config MBEDTLS_NIST_KW_C - bool "MBEDTLS_NIST_KW_C" - default n + bool "MBEDTLS_NIST_KW_C (old but used by hostapd)" + default y config MBEDTLS_RIPEMD160_C bool "MBEDTLS_RIPEMD160_C" -- 2.30.2