eth-libp2p-secio
Fork of libp2p-secio using eth-peer-id, eth-peer-info and libp2p-crypto-secp256k1.
Table of Contents
Install
npm install eth-libp2p-secio
Usage
const secio =
API
.tag
The current secio
tag, usable in multistream
.
const encryptedConnection = secio.encrypt(localPeerId, plainTextConnection [, remotePeerId] [, callback])
localPeerId: PeerId
- A PeerId object containing the Private, Public and Id of our node.plainTextConnection: Connection
- The insecure connection to be secured.remotePeerId: PeerId
- A PeerId object containing the Public and/or Id of the node we are doing the SECIO handshake with.callback: Function
- Optional, Called if an error happens during the initialization.
Returns an encrypted Connection object that is the upgraded plainTextConnection
with now having every byte encripted.
Both plainTextConnection and encryptedConnection are at their base, PullStreams.
pull-streams
This module uses We expose a streaming interface based on pull-streams
, rather then on the Node.js core streams implementation (aka Node.js streams). pull-streams
offers us a better mechanism for error handling and flow control guarantees. If you would like to know more about why we did this, see the discussion at this issue.
You can learn more about pull-streams at:
- The history of Node.js streams, nodebp April 2014
- The history of streams, 2016
- pull-streams, the simple streaming primitive
- pull-streams documentation
pull-streams
to Node.js Streams
Converting If you are a Node.js streams user, you can convert a pull-stream to a Node.js stream using the module pull-stream-to-stream
, giving you an instance of a Node.js stream that is linked to the pull-stream. For example:
const pullToStream = const nodeStreamInstance = // nodeStreamInstance is an instance of a Node.js Stream
To learn more about this utility, visit https://pull-stream.github.io/#pull-stream-to-stream.
Contribute
Feel free to join in. All welcome. Open an issue!
This repository falls under the IPFS Code of Conduct.