base64ct/alphabet/
crypt.rsuse super::{Alphabet, DecodeStep, EncodeStep};
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct Base64Crypt;
impl Alphabet for Base64Crypt {
const BASE: u8 = b'.';
const DECODER: &'static [DecodeStep] = &[
DecodeStep::Range(b'.'..=b'9', -45),
DecodeStep::Range(b'A'..=b'Z', -52),
DecodeStep::Range(b'a'..=b'z', -58),
];
const ENCODER: &'static [EncodeStep] =
&[EncodeStep::Apply(b'9', 7), EncodeStep::Apply(b'Z', 6)];
const PADDED: bool = false;
type Unpadded = Self;
}