pub static BASE32: Base32
Expand description
Padded base32 encoding
This encoding is a static version of:
let mut spec = Specification::new();
spec.symbols.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567");
spec.padding = Some('=');
assert_eq!(BASE32.as_dyn(), &spec.encoding().unwrap());
It conforms to RFC4648.