openethereum/whisper
Niklas Adolfsson 67eee6aeb7 fix(whisper): correct PoW calculation (#10166)
* Fix off-by-one error on `leading_zeros` which was used to index in the hash to get leading zeros when not aligned on byte boundary (i.e, all the bits in a byte was not zero such as 0001 1111)
* Fix overflow by shifting with bigger value than 63
2019-01-11 17:48:58 +01:00
..
cli Replace ethcore-logger with env-logger. (#10102) 2019-01-08 15:07:20 +01:00
src fix(whisper): correct PoW calculation (#10166) 2019-01-11 17:48:58 +01:00
Cargo.toml Move a bunch of stuff around (#10101) 2018-12-28 17:33:49 +08:00
README.md Fix broken links (#10119) 2019-01-02 11:14:18 +01:00

README.md

Whisper

Implementation of Whisper based on the Whisper-v2 PoC.

Usage

Parity Whisper-v2 CLI.
	Copyright 2015-2018 Parity Technologies (UK) Ltd.

Usage:
	whisper [options]
	whisper [-h | --help]

Options:
	--whisper-pool-size SIZE       Specify Whisper pool size [default: 10].
	-p, --port PORT                Specify which RPC port to use [default: 8545].
	-a, --address ADDRESS          Specify which address to use [default: 127.0.0.1].
	-l, --log LEVEL                Specify the logging level. Must conform to the same format as RUST_LOG [default: Error].
	-h, --help                     Display this message and exit.

Parity Ethereum toolchain

This project is a part of the Parity Ethereum toolchain.

  • evmbin - EVM implementation for Parity Ethereum.
  • ethabi - Parity Ethereum function calls encoding.
  • ethstore - Parity Ethereum key management.
  • ethkey - Parity Ethereum keys generator.
  • whisper - Implementation of Whisper-v2 PoC.