doc.go 687 B

12345678910111213141516
  1. /*
  2. Package whisper implements the Whisper PoC-1.
  3. (https://github.com/ethereum/wiki/wiki/Whisper-PoC-1-Protocol-Spec)
  4. Whisper combines aspects of both DHTs and datagram messaging systems (e.g. UDP).
  5. As such it may be likened and compared to both, not dissimilar to the
  6. matter/energy duality (apologies to physicists for the blatant abuse of a
  7. fundamental and beautiful natural principle).
  8. Whisper is a pure identity-based messaging system. Whisper provides a low-level
  9. (non-application-specific) but easily-accessible API without being based upon
  10. or prejudiced by the low-level hardware attributes and characteristics,
  11. particularly the notion of singular endpoints.
  12. */
  13. package whisper