Go to file
Andreas Fackler 9faf1d8701
Merge pull request #60 from poanetwork/afck-docs
Add some crate-level documentation.
2018-06-19 10:43:47 +02:00
examples review comment coverage 2018-06-14 12:28:38 +01:00
proto protobuf serialization 2018-06-13 15:17:11 +01:00
src Restructure crate-level docs, replace honest with correct. 2018-06-15 17:52:17 +02:00
tests corrected the agreement test proposer ID 2018-06-14 13:45:58 +01:00
.gitignore Merge branch 'master' into remove-autogenerated-message.rs 2018-03-28 14:52:13 +01:00
.travis.yml optimised tests to execute faster - needed by pairing computations 2018-06-13 15:18:27 +01:00
Cargo.toml Implement polynomials for distributed key generation. 2018-06-11 16:45:08 +02:00
LICENSE added GNU license and removed obsolete comments 2018-04-01 21:41:49 +01:00
README.md Add bandwidth and CPU to the simulation. 2018-05-31 14:28:10 +02:00
TODO added a TODO file and changed indentation in the .proto file 2018-05-10 10:02:03 +01:00
build.rs Remove protoc dep, use new MerkleTree methods. 2018-05-17 16:50:47 +02:00

README.md

Build Status Gitter

About

An implementation of the paper "Honey Badger of BFT Protocols" in Rust. This is a modular library of consensus. There are examples illustrating the use of this algorithm.

This is work in progress. Parts of the algorithm are still missing or incomplete.

An example is included to run a simulation of a network:

$ cargo run --example simulation --features=serialization-serde -- -h

Building

You can build hbbft using cargo:

$ cargo build [--release]