Constant data_encoding::BASE32HEX

source ·
pub const BASE32HEX: Encoding;
Expand description

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.