A pure rust port of chromiums’s btoa and atob.
btoa
atob
let base64_encoded_string = base64_encode_to_string("Hello World!".as_bytes()); let decoded_string = base64_decode_to_string(base64_encoded_string.as_bytes());