Constant BASE32_NOPAD_NOCASE

Source
pub const BASE32_NOPAD_NOCASE: Encoding;
Expand description

Unpadded base32 encoding with case-insensitive decoding

This encoding is a static version of:

let mut spec = Specification::new();
spec.symbols.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567");
spec.translate.from.push_str("abcdefghijklmnopqrstuvwxyz");
spec.translate.to.push_str("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
assert_eq!(BASE32_NOPAD_NOCASE, spec.encoding().unwrap());