Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 478 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 478 Bytes

Bitstream Go

Implementation of bitstream protocol in Go.

Example usage

You can find an example of how to use this library in the example directory.

Deviations from the original protocol

  • Original protocol uses CompactInt to encode integers, and this implementation uses LittleEndian.
  • Original protocol signs encrypted root + payment hash using Schnorr signature, and this implementation signs encrypted root only.