I don\'t want reverse-engineers to read the plain-text of hardcoded strings in my application. The trivial solution for this is using a simple XOR-Encryption. The problem is
My preferred solution:
// some header extern char const* const MyString; // some generated source char const* const MyString = "aioghaiogeubeisbnuvs";
And then use your favorite scripting language to generate this one source file where you store the "encrypted" resources.