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

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_dart: ^1.0.1

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_dart/bencode_dart.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_dart/bencode_dart.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
30
pub points
21%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

More

Packages that depend on bencode_dart