Constant data_encoding::BASE32HEX [−][src]
pub const BASE32HEX: Encoding;
Padded base32hex encoding
This encoding is a static version of:
let mut spec = Specification::new(); spec.symbols.push_str("0123456789ABCDEFGHIJKLMNOPQRSTUV"); spec.padding = Some('='); assert_eq!(BASE32HEX, spec.encoding().unwrap());
It is conform to RFC4648.