Constant data_encoding::BASE64URL_NOPAD [] [src]

pub const BASE64URL_NOPAD: Encoding = BASE64URL_NOPAD_IMPL

Unpadded base64url encoding

This encoding is a static version of:

let mut spec = Specification::new();
spec.symbols.push_str(
    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_");
assert_eq!(BASE64URL_NOPAD, spec.encoding().unwrap());