fix(esp_rom): Remove AES-192 references for unsupported chips

Cleaned up references to AES-192 in ROM headers for chips that do not support it.
This commit is contained in:
nilesh.kale
2025-03-05 13:40:04 +05:30
parent 4e635009fc
commit 49e1e22f72
11 changed files with 13 additions and 19 deletions

View File

@@ -23,8 +23,7 @@ enum AES_TYPE {
enum AES_BITS {
AES128,
AES192,
AES256
AES256 = 2, /* skipping enum value 1 to keep compatibility with chips that support AES-192 */
};
void ets_aes_enable(void);