standardNoPadding constant
Base32Codec
const standardNoPadding
Codec instance to encode and decode 8-bit integer sequence to 5-bit Base-32 character sequence using the alphabet described in RFC-4648:
ABCDEFGHIJKLMNOPQRSTUVWXYZ234567
This algorithm is a variant of the standard from the RFC-4648 that does not append any padding characters to the output.
It is not padded.
Implementation
static const Base32Codec standardNoPadding = Base32Codec._(
encoder: AlphabetEncoder(
bits: 5,
alphabet: _base32EncodingRfc4648,
),
decoder: AlphabetDecoder(
bits: 5,
alphabet: _base32DecodingRfc4648,
),
);