decrypt

Function decrypt 

Source
pub fn decrypt(s: &str) -> Option<String>
Expand description

Decrypt a given encrypted string

ยงExample

use simple_encdec::decrypt;

let x = decrypt("a=GQVGsbbyG982gd");
assert!(x.is_some());
assert_eq!(x.unwrap(), "hello world")l