fast_base58 0.1.7 copy "fast_base58: ^0.1.7" to clipboard
fast_base58: ^0.1.7 copied to clipboard

outdated

fast_base58 provides fast implementation of base58 encoding, and supports flickr alphabet and Bitcoin/IPFS alphabet.

Fast Implementation of Base58 encoding #

Base algorithm is copied from https://github.com/trezor/trezor-crypto/blob/master/base58.c

Usage #

A simple usage example:

import 'package:fast_base58/fast_base58.dart';

main() {
  var encodedStr = Base58Encode(Uint8List.fromList('bitcoin'.codeUnits)); // Uint8List(raw bytes) to base58 string
  print(encodedStr); // 4jJc4sAwPs

  var decodedRaw = Base58Decode('4jJc4sAwPs'); // base58 string to Uint8List(raw bytes)
  print(String.fromCharCodes(decodedRaw)); // bitcoin
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

7
likes
0
pub points
87%
popularity

Publisher

verified publisherc0mm4nd.com

fast_base58 provides fast implementation of base58 encoding, and supports flickr alphabet and Bitcoin/IPFS alphabet.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on fast_base58