[openwrt/openwrt] libmbedtls: enable crypto algorithms for hostap

LEDE Commits lede-commits at lists.infradead.org
Sun Nov 13 14:31:41 PST 2022


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/aeeb12eb83d669ea66dc5315cc490662bbbbd967

commit aeeb12eb83d669ea66dc5315cc490662bbbbd967
Author: Glenn Strauss <gstrauss at gluelogic.com>
AuthorDate: Sat Oct 22 13:06:58 2022 -0400

    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 <gstrauss at gluelogic.com>
---
 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"




More information about the lede-commits mailing list