b_encode_decode

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

b encode decode

A Dart library for implementing the encoding and decoding of the Bencode format.
All codes come from bencode.js, include example and test codes , I just transfer them to Dart code.
Install #
In your flutter or dart project add the dependency:
dependencies:
b_encode_decode: ^1.0.3
copied to clipboard
Usage #
A simple usage example:
Encode #
Input parameter can be a String, Number, List, or Map. It will return a encoding bytes list ( Uint8List ).
import 'package:b_encode_decode/b_encode_decode.dart' as Bencode;

main() {
Bencode.encode("string") // => "6:string"
Bencode.encode(123) // => "i123e"
Bencode.encode(["str", 123]) // => "l3:stri123ee"
Bencode.encode({ "key": "value" }) // => "d3:key5:valuee"
}
copied to clipboard
Decode #
Input should be bytes list or String.
import 'package:b_encode_decode/b_encode_decode.dart' as Bencode;

main() {
var map = Bencode.decode(Uint8List.fromList('d3:key5:valuee'.codeUnits); // => { key: "value" } , the string value is bytes array

print(map);
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.