multibase 1.0.0 multibase: ^1.0.0 copied to clipboard
An implementation of multibase in Dart
dart-multibase #
multibase implementation in Dart.
Table of Contents #
Install #
dart pub add multibase
Usage #
Codec<Uint8List, String> codec = MultibaseCodec(encodeBase: Multibase.base64);
Uint8List data = Uint8List.fromList("hello".codeUnits);
String base64 = codec.encode(data);
data = codec.decode(base64);
Or use the function API:
Uint8List data = Uint8List.fromList("hello".codeUnits);
String base64 = multibaseEncode(Multibase.base64, data);
data = multibaseDecode(base64);