feat(mbedtls): adds mbedtls alt drivers with PSA

This commit is contained in:
Ashish Sharma
2025-09-01 15:17:52 +08:00
parent 1d33cc26bd
commit c47caf4f0a
39 changed files with 1031 additions and 374 deletions

View File

@@ -108,7 +108,7 @@ static void https_get_task(void *pvParameters)
mbedtls_ssl_conf_authmode(&conf, MBEDTLS_SSL_VERIFY_REQUIRED);
mbedtls_ssl_conf_ca_chain(&conf, &cacert, NULL);
mbedtls_ssl_conf_rng(&conf, mbedtls_ctr_drbg_random, &ctr_drbg);
// mbedtls_ssl_conf_rng(&conf, mbedtls_ctr_drbg_random, &ctr_drbg);
#ifdef CONFIG_MBEDTLS_DEBUG
mbedtls_esp_enable_debug_log(&conf, CONFIG_MBEDTLS_DEBUG_LEVEL);
#endif