General area when it fits no where else

Moderator: Mmiscool

User avatar
By Ecoli-557
#56110 OK ESPers, I am working on a project but I want to protect the code or remove the easy access to the code we have when developing.
It would be easy to turn off the radio, but I need it to communicate.
Is there a way to protect the code so it cannot be accessed in any way from a wireless or USB device?
So it won't show up at all? Or even use the web-interface?
In order for these things to have commercial interest, they need a way to be locked down.
Regards.
User avatar
By ciaoperator
#84022 You can generate a bootloader that will AES decrypt the flash contents inside the iram for execution. The AES key would be based off internal security bits like the MAC address for example as well as other security bits. The key is that if someone knew the bootloader algorithm they could if they also knew your security bits figure out the AES key. That's sounds easier than it really is though. But to seal that off if you can afford to then after loading flash with the encrypted firmware and bootloader you could drive the serial port pin(s) to high level on voltage and low impedance then with fixture or by jumpering short that to ground to fuse the serial port pins. Nothing is fool proof but it would work. Or instead of writing your own bootloader just use https://www.keeloc.com to do all the hard work and calculate the AES key, encrypt the firmware binary and load the encrypted firmware and bootloader in a chain script in about 20 seconds. Then you'd have the option to close off the serial pin(s) by fusing them out on your own.