Home

Awesome

Bencode

Hex.pm Hex version <img src="http://quickcheck-ci.com/p/gausby/bencode.png" alt="QuickCheck CI Status" width="100px" height="18px">

A complete and correct Bencode encoder and decoder written in pure Elixir.

The encoder is implemented as a protocol, allowing implementations for custom structs.

The decoder should handle malformed data, either by raising an error, or returning an 2-tuple with status, both containing detailed information about the error. The decoder is also capable of calculating the hash of the info dictionary.

API

Installation

Bencode is available in Hex, and can be installed by adding it to the list of dependencies in mix.exs:

  def deps do
    [{:bencode, "~> 0.3.0"}]
  end

Notice that there are other bencode implementations on hex. Please check them out:

Bento is the fastest option, but Bencode has arguably better error reporting during decoding.

Thanks

Thanks to the following for their contributions to the project:

License

Copyright 2016 Martin Gausby

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.