From 68910618fcf0d43644cf40092cb4f95e3f884a38 Mon Sep 17 00:00:00 2001 From: xiaqilin Date: Fri, 30 Jun 2023 14:15:55 +0800 Subject: [PATCH] openthread: disable HW AES (IDF-7704) --- examples/openthread/ot_sleepy_device/sdkconfig.defaults | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/openthread/ot_sleepy_device/sdkconfig.defaults b/examples/openthread/ot_sleepy_device/sdkconfig.defaults index e9d3993e19..2279111544 100644 --- a/examples/openthread/ot_sleepy_device/sdkconfig.defaults +++ b/examples/openthread/ot_sleepy_device/sdkconfig.defaults @@ -9,6 +9,10 @@ CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" # # mbedTLS # +# TODO: Re-enable HW acceleration when HW AES support pm_lock (IDF-7704) +CONFIG_MBEDTLS_HARDWARE_AES=n +CONFIG_MBEDTLS_HARDWARE_MPI=n +CONFIG_MBEDTLS_HARDWARE_SHA=n CONFIG_MBEDTLS_CMAC_C=y CONFIG_MBEDTLS_SSL_PROTO_DTLS=y CONFIG_MBEDTLS_KEY_EXCHANGE_ECJPAKE=y