feat(hal/spi_flash_encrypted): Support AES pseudo rounds function in ESP32-H2 ECO5

This commit is contained in:
harshal.patil
2024-12-27 17:15:33 +05:30
parent 1a7c52a230
commit b26109cede
8 changed files with 111 additions and 7 deletions

View File

@@ -169,6 +169,14 @@ static inline void spi_flash_encrypt_ll_enable_pseudo_rounds(uint8_t mode, uint8
}
}
/**
* @brief Check if the pseudo round function is supported
*/
static inline bool spi_flash_encrypt_ll_is_pseudo_rounds_function_supported(void)
{
return true;
}
#ifdef __cplusplus
}
#endif