Browse Source

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 <[email protected]>
Glenn Strauss 3 years ago
parent
commit
aeeb12eb83
1 changed files with 6 additions and 6 deletions
  1. 6 6
      package/libs/mbedtls/Config.in

+ 6 - 6
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"