aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/whisperv6/envelope.go
Commit message (Collapse)AuthorAgeFilesLines
* whisper: PoW calculations as specified in EIP-627 (#19753)Guillaume Ballet2019-06-251-10/+11
| | | | | | * whisper: PoW calculations as specified in EIP-627 * Fix unit tests
* whisper/whisperv6: fix PoW calculations to match the spec (#19330)Guillaume Ballet2019-03-261-12/+12
| | | | | | | | | | | | This PR fixes two issues in the PoW calculation of a Whisper envelope, compared to the spec (see PoW Requirements): - The pow is supposed to take the leading number of zeroes (i.e. most significant zeroes) and what it did was to take the number of trailing zeroes (i.e. least significant zeroes). It has been fixed to match what the spec and Parity does. - The spec expects to use the size of the RLP encoded envelope, and it took something else, as described in #18070.
* whisper: final refactoring (#16259)gluk2562018-03-071-0/+8
| | | | whisper: final refactoring
* whisper: filereader mode introduced to wnodeVlad2018-03-021-0/+4
|
* whisper: topics replaced by bloom filtersVlad2018-03-011-1/+1
|
* whisper: Seal function fixed (#16048)gluk2562018-02-091-6/+14
|
* whisper: change the whisper message format so as to add the payload size ↵gluk2562018-01-301-3/+2
| | | | | | | | | | | | | | | | | | (#15870) * whisper: message format changed * whisper: tests fixed * whisper: style fixes * whisper: fixed names, fixed failing tests * whisper: fix merge issue in #15870 Occured while using the github online merge tool. Lesson learned. * whisper: fix a gofmt error for #15870
* whisper: remove linter warnings (#15972)Guillaume Ballet2018-01-261-0/+2
| | | | | | | | | | | | | | | | | | | | | | | * whisper: fixes warnings from the code linter * whisper: more non-API-breaking changes The remaining lint errors are because of auto-generated files and one is because an exported function has a non- exported return type. Changing this would break the API, and will be part of another commit for easier reversal. * whisper: un-export NewSentMessage to please the linter This is an API change, which is why it's in its own commit. This change was initiated after the linter complained that the returned type wasn't exported. I chose to un-export the function instead of exporting the type, because that type is an implementation detail that I would like to change in the near future to make the code more readable and with an increased coverage. * whisper: update gencodec output after upgrading it to new lint standards
* whisper/whisperv6: implement pow/bloom exchange protocol (#15802)gluk2562018-01-121-3/+32
| | | This is the main feature of v6.
* whisper/whisperv6: remove Version from the envelope (#15621)Guillaume Ballet2017-12-081-25/+12
|
* whisper/whisperv6: remove aesnonce (#15578)Guillaume Ballet2017-12-081-28/+24
| | | | As per EIP-627, the salt for symmetric encryption is now part of the payload. This commit does that.
* whisper: rename EnvNonce to Nonce in the v6 Envelope (#15579)Guillaume Ballet2017-12-011-4/+4
|
* whisper/whisperv6: initial commit (clone of v5) (#15324)gluk2562017-11-041-0/+246