cancel
Showing results for 
Search instead for 
Did you mean: 

Implementing encryption on the STM3240G-EVAL board

dk
Associate II

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?

1 ACCEPTED SOLUTION

Accepted Solutions

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

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

View solution in original post

4 REPLIES 4

Sure, or use one of the thousands of examples on the interwebs.​

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
dk
Associate II

Oh ok! Do you know any that might be compatible with the STM32F407 MCU?

Sorry I'm having trouble finding an example :(

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

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

Oh ok thanks!!