bencode_dart 1.0.0 copy "bencode_dart: ^1.0.0" to clipboard
bencode_dart: ^1.0.0 copied to clipboard

outdated

A Dart library for implementing the encoding and decoding of the Bencode format.

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:
  bencode: ^1.0.0

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:bencode/bencode.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"
}

Decode #

Input should be bytes list or String.

import 'package:bencode/bencode.dart' as Bencode;

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

  print(map);

Features and bugs #

Please file feature requests and bugs at the issue tracker.

3
likes
0
pub points
38%
popularity

Publisher

unverified uploader

A Dart library for implementing the encoding and decoding of the Bencode format.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on bencode_dart