Merge branch 'feature/esp32h2_eco5_ecc_v5.3' into 'release/v5.3'

feat(ecc): enable ECC constant time mode for ESP32-H2 ECO5 (v5.3)

See merge request espressif/esp-idf!36585
This commit is contained in:
Jiang Jiang Jian
2025-02-28 10:50:18 +08:00
29 changed files with 1389 additions and 544 deletions

View File

@@ -173,6 +173,12 @@ static inline void ecc_ll_read_param(ecc_ll_param_t param, uint8_t *buf, uint16_
memcpy(buf, (void *)reg, len);
}
static inline void ecc_ll_enable_constant_time_point_mul(bool enable)
{
// Not supported for ESP32-C6
(void) enable; //unused
}
#ifdef __cplusplus
}
#endif