A very simple rust library to encrypt and decrypt strings.
- Rust 1.56+ (edition 2021)
cargo b --release
- Encrypt
use simple_encdec::encrypt;
let x = encrypt("hello world");
assert!(x.is_some());
assert_eq!(x.unwrap(), "a=GQVGsbbyG982gd");
- Decrypt
use simple_encdec::decrypt;
let x = decrypt("a=GQVGsbbyG982gd");
assert!(x.is_some());
assert_eq!(x.unwrap(), "hello world");
License: MIT