Constant data_encoding::BASE32 [] [src]

pub const BASE32: Encoding = BASE32_IMPL

RFC4648 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.