Function decode

Source
pub fn decode(string: &str) -> String
Expand description

Base64 decode string

ยงExample

let string = "SGkh";
let result = base64_string::decode(string);
assert_eq!(result, String::from("Hi!"));