multibase implementation in Dart.
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);About
Implementation of multibase parser in Dart
Resources License Stars Watchers ForksYou can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4