From a9e282c285b2009612a13dda4e3d19bf754e59fd Mon Sep 17 00:00:00 2001 From: Chaitanya Tata Date: Tue, 10 Oct 2023 00:50:17 +0530 Subject: [PATCH] hostap: Fix missing dependencies for PSA Due to a bug in Kconfig, both legacy and PSA crypto were enabled earlier, so, the dependencies for PSA were missed as they were provided by legacy. Signed-off-by: Chaitanya Tata --- modules/hostap/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/hostap/Kconfig b/modules/hostap/Kconfig index 88b5b62693d..30550f80854 100644 --- a/modules/hostap/Kconfig +++ b/modules/hostap/Kconfig @@ -104,6 +104,8 @@ config WIFI_NM_WPA_SUPPLICANT_CRYPTO_PSA select MBEDTLS_CIPHER_MODE_CTR select MBEDTLS_CIPHER_MODE_CBC select MBEDTLS_SSL_TLS_C + select MBEDTLS_ECP_C + select MBEDTLS_CTR_DRBG_C select MBEDTLS_KEY_EXCHANGE_ALL_ENABLED select MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED select MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED