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::encrypt_all_strings;

#[encrypt_all_strings]
fn main() {
    println!("everything in this function gets encrypted, {}", "even this")
}