10-14-2009, 04:35 PM
Making the code VISUALLY hard to read has NOTHING to do with security, to a computer, its still decompileable, Examples below
#include <iostream>
int main()
{
cout << "Hello Their!";
}
#include <iostream>
int main() {
cout <<
"Hello their!"; }
Look up code obfuscator if you want it Assembly hard to read.
#include <iostream>
int main()
{
cout << "Hello Their!";
}
#include <iostream>
int main() {
cout <<
"Hello their!"; }
Look up code obfuscator if you want it Assembly hard to read.