Constant data_encoding::BASE32
source · [−]pub const BASE32: Encoding;
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, spec.encoding().unwrap());
It is conform to RFC4648.