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

xor a single string literal declaratively

Example

use encryption_macros::e;

fn main() {
    let secret_string = e!{"piss you can not read this from the raw binary"};
    println!("our secret string: \"{}\"", secret_string)
}