lowercase constant

Base32Codec const lowercase

Codec instance to encode and decode 8-bit integer sequence to 5-bit Base-32 character sequence using the alphabet:

abcdefghijklmnopqrstuvwxyz234567

This alphabet is a variant of the standard alphabet from RFC-4648 using the lowercase characters.

It is padded with =

Implementation

static const Base32Codec lowercase = Base32Codec._(
  encoder: AlphabetEncoder(
    bits: 5,
    padding: _padding,
    alphabet: _base32EncodingRfc4648Lower,
  ),
  decoder: AlphabetDecoder(
    bits: 5,
    padding: _padding,
    alphabet: _base32DecodingRfc4648,
  ),
);