2019-06-10 12:17 AM
I'm aware that the STM3240G-EVAL doesn't have a hardware crypto processor, but is it possible to create a software algorithm to do the encryption? Possibly using the X-CUBE-CRYPTOLIB library?
Solved! Go to Solution.
2019-06-10 06:41 PM
C is pretty universal in application, ARM assembler isn't far off
https://github.com/kokke/tiny-AES-c
https://opensource.apple.com/source/CommonCrypto/CommonCrypto-55010/Source/AESedp/AES.c.auto.html
https://github.com/Ko-/aes-armcortexm
2019-06-10 01:32 AM
Sure, or use one of the thousands of examples on the interwebs.
2019-06-10 06:23 PM
Oh ok! Do you know any that might be compatible with the STM32F407 MCU?
Sorry I'm having trouble finding an example :(
2019-06-10 06:41 PM
C is pretty universal in application, ARM assembler isn't far off
https://github.com/kokke/tiny-AES-c
https://opensource.apple.com/source/CommonCrypto/CommonCrypto-55010/Source/AESedp/AES.c.auto.html
https://github.com/Ko-/aes-armcortexm
2019-06-10 07:12 PM
Oh ok thanks!!