diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2022-10-22 13:06:58 -0400 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-11-13 21:51:22 +0100 |
commit | aeeb12eb83d669ea66dc5315cc490662bbbbd967 (patch) | |
tree | 8a7b30d6146029488e346ecd25dc6ab251cfd066 /package | |
parent | 602a76ed65e51fa4f10f50dbeda821741f2bdbab (diff) | |
download | upstream-aeeb12eb83d669ea66dc5315cc490662bbbbd967.tar.gz upstream-aeeb12eb83d669ea66dc5315cc490662bbbbd967.tar.bz2 upstream-aeeb12eb83d669ea66dc5315cc490662bbbbd967.zip |
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@gluelogic.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/libs/mbedtls/Config.in | 12 |
1 files 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" |