lowercaseNoPadding constant

Base32Codec const lowercaseNoPadding

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

abcdefghijklmnopqrstuvwxyz234567

This algorithm is a variant of the lowercase that does not append any padding characters to the output.

It is not padded.

Implementation

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