Merge branch 'bugfix/esp32s2_disable_hw_crypto' into 'master'

mbedtls: temporary disable HW crypto for ESP32-S2

See merge request espressif/esp-idf!7448
This commit is contained in:
Angus Gratton
2020-01-24 07:43:25 +08:00

View File

@@ -132,6 +132,7 @@ menu "mbedTLS"
config MBEDTLS_HARDWARE_AES config MBEDTLS_HARDWARE_AES
bool "Enable hardware AES acceleration" bool "Enable hardware AES acceleration"
default y default y
depends on !IDF_TARGET_ESP32S2
help help
Enable hardware accelerated AES encryption & decryption. Enable hardware accelerated AES encryption & decryption.
@@ -141,6 +142,7 @@ menu "mbedTLS"
config MBEDTLS_HARDWARE_MPI config MBEDTLS_HARDWARE_MPI
bool "Enable hardware MPI (bignum) acceleration" bool "Enable hardware MPI (bignum) acceleration"
default y default y
depends on !IDF_TARGET_ESP32S2
help help
Enable hardware accelerated multiple precision integer operations. Enable hardware accelerated multiple precision integer operations.
@@ -152,6 +154,7 @@ menu "mbedTLS"
config MBEDTLS_HARDWARE_SHA config MBEDTLS_HARDWARE_SHA
bool "Enable hardware SHA acceleration" bool "Enable hardware SHA acceleration"
default y default y
depends on !IDF_TARGET_ESP32S2
help help
Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS. Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.