encrypt_strings!() { /* proc-macro */ }
Expand description

xor all string literals in the provided scope

Example

use encryption_macros::encrypt_strings;
 
encrypt_strings!{
    fn main() {
        println!("everything in this scope gets encrypted, {}", "even this")
    }
}