Home > Net >  Encrypting And Decrypting data in keil
Encrypting And Decrypting data in keil

Time:08-06

Can I encrypt binary code in keil software itself? Are there any other options I can encrypt my binary code and send the encrypted code to some other place?

CodePudding user response:

Write encrypting program (or use any available on the market) and run a post buid step.

More info: https://developer.arm.com/documentation/101407/0537/Dialogs/Project/Options/User?lang=en

CodePudding user response:

You could do it manual or link post build steps with some executable (there are lot of open source software for encrypt, decrypt. And some already available in your PC) to perform this.

  • Related