I been researching how best to store an encryption key in code. The answers and advice many people give is that to not do it because it can be obtained from the code. For example... http://bit.ly/16wpVU.
So my question is, have you ever done this? Or at least have you done the technique required to do this but maybe for other purposes? How exactly is it done so that if the decision is made to hide an encryption key in the code people can be better prepared for it if at all?
thanks jose
strings <executable>often already does the trick... More 'sophisticated' techniques can be broken with a debugger. Don't ever hardcode keys. – emboss Jul 26 '12 at 11:27stringsdoesn't really require much convincing, for example try hardcoding a "secret key" in a Jar file or other executable of some sort, and then runstringson it - there it is. The debugger thing is not much more complicated - just monitor the application's memory access, at some point it will have to reconstruct and read the secret information. I bet there's a whole lot to be found in the scene around cracking keys/passwords for games, I'd start there. – emboss Jul 26 '12 at 14:23