6d791eb0f56a437288a3e0780585a4558fc0cdfa
2 pub fn encrypt(key
: &str, plain_text
: &str) -> String
{
3 let key_as_bytes
= base64
::decode(key
);
10 pub fn decrypt(key
: &str, cypher_text
: &str) -> Option
<String
> {
12 println!("cypher: {}", cypher_text
);