A very simple rust library to encrypt and decrypt strings.
bash
cargo b --release
let x = encrypt("hello world"); assert!(x.issome()); asserteq!(x.unwrap(), "a=GQVGsbbyG982gd"); ```
let x = decrypt("a=GQVGsbbyG982gd"); assert!(x.issome()); asserteq!(x.unwrap(), "hello world"); ```
License: MIT