joaovarelas / Obfuscator-LLVM-16.0

GNU General Public License v3.0
91 stars 17 forks source link

Do you know how to use string encryption #11

Open androiddisk opened 5 months ago

androiddisk commented 5 months ago

After compiling the original string, the binary can be directly opened to view the used string.

    let my_string = "Hello, world!";

I will now use ASCII for the string and then convert it back to the string

    let my_string = String::from_utf8_lossy(&[72, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100, 33]);

Please evaluate the safety

westsidedev commented 2 weeks ago

@androiddisk consider using litcrypt, I'm using this to protect critical strings