Constant data_encoding::BASE32_NOPAD
source ยท pub const BASE32_NOPAD: Encoding;
Expand description
Unpadded base32 encoding
This encoding is a static version of:
let mut spec = Specification::new();
spec.symbols.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567");
assert_eq!(BASE32_NOPAD, spec.encoding().unwrap());