Merge branch 'esp32p4/deterministic_ecdsa_support' into 'master'

Add deterministic ECDSA support

Closes IDF-8507

See merge request espressif/esp-idf!29010
This commit is contained in:
Mahavir Jain
2024-04-01 16:45:14 +08:00
15 changed files with 389 additions and 55 deletions

View File

@@ -1191,6 +1191,10 @@ config SOC_CRYPTO_DPA_PROTECTION_SUPPORTED
bool
default y
config SOC_ECDSA_USES_MPI
bool
default y
config SOC_UART_NUM
int
default 2

View File

@@ -468,6 +468,9 @@
/*------------------------ Anti DPA (Security) CAPS --------------------------*/
#define SOC_CRYPTO_DPA_PROTECTION_SUPPORTED 1
/*------------------------- ECDSA CAPS -------------------------*/
#define SOC_ECDSA_USES_MPI (1)
/*-------------------------- UART CAPS ---------------------------------------*/
// ESP32-H2 has 2 UARTs
#define SOC_UART_NUM (2)