libp2p / js-libp2p-example-connection-encryption

An example of how to configure connection encryption

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@libp2p/example-connection-encryption

libp2p.io Discuss codecov CI

An example of how to configure connection encrypters

Table of contents

All traffic sent over connections between two libp2p nodes is encrypted. This gives us peace of mind that the node we are talking to is the node we think we are talking to, and that no-one is able to eavesdrop or interfere with the data we are exchanging.

You may have noticed that every time we dial the multiaddr of a peer in libp2p space, we include the PeerId at the end:

/ip4/127.0.0.1/tcp/89765/p2p/12D3Foo

For some types of PeerID, it is the public key of the remote node (Ed25519 and secp256k1) or, when the public key is too large to embed in a string, it can be the a hash of the public key (RSA).

Including the PeerID in the multiaddr allows us to authenticate the remote peer by creating a crypto challenge that allows them to prove they hold the the private key that matches the public key we know.

Once authenticated in this fashion we can proceed to encrypt/decrypt all traffic sent over the connection.

There are several strategies for performing encryption, the most common uses the Noise Protocol Framework.

js-libp2p also supports a plaintext "encryption" implementation that should not be used in production but is sometimes useful for testing.

Set up encrypted communications

To add them to your libp2p configuration, all you have to do is:

import { noise } from '@chainsafe/libp2p-noise'
import { yamux } from '@chainsafe/libp2p-yamux'
import { tcp } from '@libp2p/tcp'
import { createLibp2p } from 'libp2p'

const createNode = async () => {
  return await createLibp2p({
    transports: [ tcp() ],
    streamMuxers: [ yamux() ],
    // Attach noise as the crypto channel to use
    conectionEncrypters: [ noise() ]
  })
}

And that's it, from now on, all your libp2p communications are encrypted. Try running the example noise.js to see it working.

To experiment with the plaintext implementation, run plaintext.js.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

An example of how to configure connection encryption

License:Other


Languages

Language:JavaScript 100.0%