Simple Encrypt / Decrypt

Linux Arm7 Linux x86_64 macOS Windows

A very simple rust library to encrypt and decrypt strings.

Requirements

Compile

bash cargo b --release

Example

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