Last updated:
0 purchases
fast base58
Fast Implementation of Base58 encoding #
Base algorithm is copied from https://github.com/trezor/trezor-crypto/blob/master/base58.c
And updating optimization from https://github.com/mr-tron/base58
Usage #
A simple usage example:
import 'dart:convert'; // for utf8
import 'package:fast_base58/fast_base58.dart';
main() {
var encodedStr = Base58Encode(utf8.encode('bitcoin'.codeUnits)); // Uint8List(raw bytes) to base58 string
print(encodedStr); // 4jJc4sAwPs
var decodedRaw = Base58Decode('4jJc4sAwPs'); // base58 string to Uint8List(raw bytes)
print(utf8.decode(decodedRaw)); // bitcoin
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.