pub static BASE64: Base64
Expand description
Padded base64 encoding
This encoding is a static version of:
let mut spec = Specification::new();
spec.symbols.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
spec.padding = Some('=');
assert_eq!(BASE64.as_dyn(), &spec.encoding().unwrap());
It conforms to RFC4648.