Constant BASE32_DNSSEC

pub const BASE32_DNSSEC: Encoding;

DNSSEC base32 encoding

This encoding is a static version of:

# use data_encoding::{Specification, BASE32_DNSSEC};
let mut spec = Specification::new();
spec.symbols.push_str("0123456789abcdefghijklmnopqrstuv");
spec.translate.from.push_str("ABCDEFGHIJKLMNOPQRSTUV");
spec.translate.to.push_str("abcdefghijklmnopqrstuv");
assert_eq!(BASE32_DNSSEC, spec.encoding().unwrap());

It conforms to RFC5155: