I want to implement AES-128 CFB (Chiper Feedback) algorithm using HW Cryptographic processor on STM32F437 microcontroller.
I don't want to use "STM32 crypto library" (DocID028112 Rev 2), but I want to write my custom library from scratch.
The problem is: On STM32F437 reference manual (DocID018909 Rev 14) at page 721 is written that the only AES algorithms implemented are ECB, CBC, CTR, CCM and GCM:
But on "STM32 crypto library" user manual (DocID028112 Rev 2) is written that CFB algorithm is supported on STM32F437:
In STM32F437 reference manual there is no procedure to implement AES CFB algorithm and inside ST HAL driver there aren't function for AES CFB.
What's wrong? How can I implement AES 128 CFB algorithm on STM32F437?
Many thanks!