rust_code_obfuscator 0.3.0

A Rust library to easily obfuscate strings and control-flow using cryptify lib
Documentation
1
2
3
4
5
6
7
8
fn main() {
    // This is a simple example of obfuscating a string using cli: cargo run -p obfuscator_cli -- -i examples/basic_usage_7.rs -o output/
    let secret = "Codice segreto!";
    println!("--> {}", secret);

    let message = "Messaggio importante!";
    println!("Messaggio: {}", message);
}