Constant data_encoding::BASE32 [] [src]

pub const BASE32: &'static Padded = BASE32_IMPL

RFC4648 base32 encoding

This encoding is a static version of:

assert_eq!(BASE32, &Builder::new(b"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567")
                       .pad(b'=').padded().unwrap());

It is conformant with RFC4648.