pub fn decode_base64(data: &str) -> Result<String, Box<dyn Error>>
Expand description
Decodes a standard Base64 encoded string.
ยงExamples
use nutek_encode_lib::encoder;
let decoded = encoder::decode_base64("aGVsbG8=").unwrap();
assert_eq!(decoded, "hello");