ecashaddr/base32 library

Constants

charset → const String
Charset containing the 32 symbols used in the base32 encoding.
charsetInverseIndex → const Map<String, int>
Inverted index mapping each symbol into its index within the charset.

Functions

decode(dynamic string) Uint8List
Decodes the given base32-encoded string into an array of 5-bit integers.
encode(dynamic data) String
Encodes the given array of 5-bit integers as a base32-encoded string.