encryption-macros 0.1.1

This crate provides macros to xor strings decaritive or automaticly at compiletime and atomaticly decode the at run time.
Documentation
1
2
3
4
5
6
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)
}