convert library

Classes

Base58To64Codec
Converts a base-58 encoded string to/from a base-64 encoded string.
Base58To64Decoder
Base-58 to Base-64 Decoder
Base58To64Encoder
Base-58 to Base-64 Encoder

Constants

base58 → const Base58CodecBitcoin
Base-58 Codec
base58To64 → const Base58To64Codec
Base-58 to Base-64 Codec
hex → const Base16Codec
Hex (Base-16) Codec

Functions

base58Decode(String encoded) Uint8List
Decodes a base-58 encoded string.
base58Encode(Uint8List input) String
Encodes input to a base-58 string.
base58To64Decode(String base64) String
Converts a base-64 encoded string to base-58.
base58To64Encode(String base58) String
Converts a base-58 encoded string to base-64.
hexDecode(String encoded) Uint8List
Decodes a hexadecimal encoded string.
hexEncode(Uint8List input) String
Encodes input to a hexadecimal string.