pub fn encrypt(s: &str) -> Option<String>
Encrypt a given plain text string
use simple_encdec::encrypt; let x = encrypt("hello world"); assert!(x.is_some()); assert_eq!(x.unwrap(), "a=GQVGsbbyG982gd");