mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.4 KiB
33 lines
1.4 KiB
9 years ago
|
// Copyright 2014 The go-ethereum Authors
|
||
9 years ago
|
// This file is part of the go-ethereum library.
|
||
9 years ago
|
//
|
||
9 years ago
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||
9 years ago
|
// it under the terms of the GNU Lesser General Public License as published by
|
||
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
// (at your option) any later version.
|
||
|
//
|
||
9 years ago
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
||
9 years ago
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
9 years ago
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
9 years ago
|
// GNU Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public License
|
||
9 years ago
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||
9 years ago
|
|
||
10 years ago
|
/*
|
||
|
Package whisper implements the Whisper PoC-1.
|
||
|
|
||
|
(https://github.com/ethereum/wiki/wiki/Whisper-PoC-1-Protocol-Spec)
|
||
|
|
||
|
Whisper combines aspects of both DHTs and datagram messaging systems (e.g. UDP).
|
||
|
As such it may be likened and compared to both, not dissimilar to the
|
||
|
matter/energy duality (apologies to physicists for the blatant abuse of a
|
||
|
fundamental and beautiful natural principle).
|
||
|
|
||
|
Whisper is a pure identity-based messaging system. Whisper provides a low-level
|
||
|
(non-application-specific) but easily-accessible API without being based upon
|
||
|
or prejudiced by the low-level hardware attributes and characteristics,
|
||
|
particularly the notion of singular endpoints.
|
||
|
*/
|
||
8 years ago
|
package whisperv2
|