feat: enable ecdsa support for esp32h21

This commit enabled suppot for ECDSA peripheral in ESP32H21.
This commit is contained in:
nilesh.kale
2025-01-13 16:42:23 +05:30
parent 44d5361821
commit aae4bfb6f3
13 changed files with 624 additions and 19 deletions
+9
View File
@@ -58,6 +58,15 @@ ESP_SYSTEM_INIT_FN(esp_security_init, SECONDARY, BIT(0), 103)
}
}
#endif
#if CONFIG_ESP_ECDSA_ENABLE_P192_CURVE
esp_err_t err;
err = esp_efuse_enable_ecdsa_p192_curve_mode();
if (err != ESP_OK) {
return err;
}
#endif
return ESP_OK;
}