cryptify 3.2.1

A procedural macro library to obfuscate Rust code. Provides compile-time string encryption and random flow obfuscation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//integration tests testing whole crate
#[test]
fn test_encrypt_macro() {
    let decrypted: String = cryptify::encrypt_string!("Hello World");
    assert_eq!("Hello World", decrypted);
}

#[test]
fn test_flow_macro() {
    //manually test for now with cargo expand
    cryptify::flow_stmt!();
    assert_eq!(1, 1);
}