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
7
use encryption_macros::encrypt_strings;

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