We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
@androiddisk consider using litcrypt, I'm using this to protect critical strings
Sorry, something went wrong.
No branches or pull requests
After compiling the original string, the binary can be directly opened to view the used string.
I will now use ASCII for the string and then convert it back to the string
Please evaluate the safety
The text was updated successfully, but these errors were encountered: