2019-07-15 05:29 AM
The reference manual gives a brief description but how do you actually implement it?
I'm using an STM32F437 which includes a cryptographic accelerator so I'm not looking to use the Cryptographic Library.
Any documentation, tutorial, example code or any kind of guidance would be appreciated.
Solved! Go to Solution.
2019-07-15 05:36 AM
Should be AES examples in the CubeF4 HAL trees, these exercise the HW and are easily ported
STM32Cube_FW_F4_V1.24.0\Projects\STM32469I_EVAL\Examples\CRYP\CRYP_AESGCM
STM32Cube_FW_F4_V1.24.0\Projects\STM324xG_EVAL\Examples\CRYP\CRYP_AESModes
2019-07-15 05:36 AM
Should be AES examples in the CubeF4 HAL trees, these exercise the HW and are easily ported
STM32Cube_FW_F4_V1.24.0\Projects\STM32469I_EVAL\Examples\CRYP\CRYP_AESGCM
STM32Cube_FW_F4_V1.24.0\Projects\STM324xG_EVAL\Examples\CRYP\CRYP_AESModes
2019-07-15 07:25 AM
Thanks for the hint!