Iatros Member Licensed User May 8, 2016 #1 I developed a software with C++ Builder. Now I think about to rebuild it in B4J, so it can be used on Windows and Mac. Is it enough to compile it with obfuscated ? I included a serialnumber system, but if you can decompile it ...
I developed a software with C++ Builder. Now I think about to rebuild it in B4J, so it can be used on Windows and Mac. Is it enough to compile it with obfuscated ? I included a serialnumber system, but if you can decompile it ...
Erel B4X founder Staff member Licensed User Longtime User May 9, 2016 #2 Make sure to set all the sensitive strings as process_global variables. This way they will be obfuscated. Iatros said: Is it enough to compile it with obfuscated ? Click to expand... Only you can answer this question. Obfuscation makes it harder to reverse engineer your code. Note that if you haven't obfuscated your C++ code then the strings can be easily extracted from your current executable. Upvote 0
Make sure to set all the sensitive strings as process_global variables. This way they will be obfuscated. Iatros said: Is it enough to compile it with obfuscated ? Click to expand... Only you can answer this question. Obfuscation makes it harder to reverse engineer your code. Note that if you haven't obfuscated your C++ code then the strings can be easily extracted from your current executable.