From aea4f3ef0dc6ba003c8526b8f968168dc8bb7b25 Mon Sep 17 00:00:00 2001 From: Ashish Sharma Date: Thu, 5 Feb 2026 11:25:36 +0800 Subject: [PATCH] feat: adds support to use PSA opaque DS driver --- examples/ssl_ds/main/app_main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/ssl_ds/main/app_main.c b/examples/ssl_ds/main/app_main.c index 1d0e546..c9b2510 100644 --- a/examples/ssl_ds/main/app_main.c +++ b/examples/ssl_ds/main/app_main.c @@ -32,7 +32,12 @@ #include "esp_log.h" #include "mqtt_client.h" +#include "sdkconfig.h" +#if CONFIG_MBEDTLS_VER_4_X_SUPPORT +#include "psa_crypto_driver_esp_rsa_ds.h" +#else #include "rsa_sign_alt.h" +#endif /* MBEDTLS_VER_4_X_SUPPORT */ #include "esp_secure_cert_read.h" static const char *TAG = "mqtts_example";