1.0.1 • Published 2 days ago

@libp2p/pnet v1.0.1

Weekly downloads
-
License
Apache-2.0 OR MIT
Repository
github
Last release
2 days ago

Connection protection management for libp2p leveraging PSK encryption via XSalsa20.

libp2p.io Discuss codecov CI

Implementation of Connection protection management via a shared secret

About

Connection protection management for libp2p leveraging PSK encryption via XSalsa20.

Example

import { createLibp2p } from 'libp2p'
import { preSharedKey, generateKey } from '@libp2p/pnet'

// Create a Uint8Array and write the swarm key to it
const swarmKey = new Uint8Array(95)
generateKey(swarmKey)

const node = await createLibp2p({
  // ...other options
  connectionProtector: preSharedKey({
    psk: swarmKey
  })
})

Private Shared Keys

Private Shared Keys are expected to be in the following format:

/key/swarm/psk/1.0.0/
/base16/
dffb7e3135399a8b1612b2aaca1c36a3a8ac2cd0cca51ceeb2ced87d308cac6d

PSK Generation

A utility method has been created to generate a key for your private network. You can use one of the methods below to generate your key.

From a module using libp2p

If you have a module locally that depends on libp2p, you can run the following from that project, assuming the node_modules are installed.

node -e "import('@libp2p/pnet').then(({ generateKey }) => generateKey(process.stdout))" > swarm.key

Programmatically

import fs from 'fs'
import { generateKey } from '@libp2p/pnet'

const swarmKey = new Uint8Array(95)
generateKey(swarmKey)

fs.writeFileSync('swarm.key', swarmKey)

Install

$ npm i @libp2p/pnet

Browser <script> tag

Loading this module through a script tag will make it's exports available as Libp2pPnet in the global namespace.

<script src="https://unpkg.com/@libp2p/pnet/dist/index.min.js"></script>

API Docs

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.

1.0.0-7ae6063df

2 days ago

1.0.0-510d9ce65

5 days ago

1.0.0-767b23e71

5 days ago

1.0.0-d9366f9aa

5 days ago

1.0.0-1488a7371

5 days ago

1.0.0-bfa7660d5

5 days ago

1.0.0-4ad63bb79

5 days ago

1.0.0-a11e135c2

10 days ago

1.0.0-de3f7aeaf

11 days ago

1.0.0-9d13a2f6a

11 days ago

1.0.0-c82432312

12 days ago

1.0.0-3d7a9da17

12 days ago

1.0.0-3bc94b403

12 days ago

1.0.0-998fcaf94

16 days ago

1.0.0-e1923b0a7

16 days ago

1.0.0-90cfd25e2

17 days ago

1.0.0-2281f802b

18 days ago

1.0.0-c2181f0cf

18 days ago

1.0.0-fd1f8343d

19 days ago

1.0.0-eaf8ac7cf

20 days ago

1.0.0-acef72613

20 days ago

1.0.0-ea4f26285

26 days ago

1.0.0-31c78f4ed

27 days ago

1.0.0-08dabd390

27 days ago

1.0.0-b17824a1d

30 days ago

1.0.0-2c56203f9

30 days ago

1.0.0-732c436d4

1 month ago

1.0.0-936dbba10

1 month ago

1.0.0-2b2958fe6

1 month ago

1.0.0-3e515f007

1 month ago

1.0.0-d446c6c31

1 month ago

1.0.0-a2b41f793

1 month ago

1.0.0-4fc0a7d30

1 month ago

1.0.0-80278b36b

1 month ago

1.0.0-afe15f669

1 month ago

1.0.0-1f589c822

1 month ago

1.0.0-3ffecc5bf

1 month ago

1.0.0-ab5f05763

1 month ago

1.0.0-1fc929c1c

1 month ago

1.0.0-59a97b61b

2 months ago

1.0.0-82901e785

1 month ago

1.0.0-bf720c045

1 month ago

1.0.0-330a5ed72

1 month ago

1.0.0-e1798aa26

2 months ago

1.0.0-fad3074b8

2 months ago

1.0.0-f39ce5f13

2 months ago

1.0.0-cad9cf007

2 months ago

1.0.0-83ef3717e

2 months ago

1.0.0-ab466004b

2 months ago

1.0.0-a9cc0ee49

2 months ago

1.0.0-28e51652a

2 months ago

1.0.0-2122a713d

2 months ago

1.0.0-f71bc49bd

2 months ago

1.0.0-f0d2b52d0

2 months ago

1.0.0-e1c01370b

3 months ago

1.0.0-8072a2e59

3 months ago

1.0.0-b1b77adb4

3 months ago

1.0.0-bedfd0aa2

3 months ago

1.0.0-fb7c51c3c

3 months ago

1.0.0-0c7bbbb07

3 months ago

1.0.0-9891ecd73

3 months ago

1.0.0-0321812e7

3 months ago

1.0.0-03ff9fd82

3 months ago

1.0.0-1cb2408ac

3 months ago

1.0.0-dab5cf724

3 months ago

1.0.0-2370d1c39

3 months ago

1.0.0-e1db332a4

3 months ago

1.0.0-6f323de7d

3 months ago

1.0.0-c9ed1c7d6

4 months ago

1.0.0-f4dda4a3c

4 months ago

1.0.0-74fb5671d

4 months ago

1.0.0-2e464c099

4 months ago

1.0.0-dbc92ab74

4 months ago

1.0.0-72f0e09f7

4 months ago

1.0.0-f27138ca1

4 months ago

1.0.0-74477f6ea

4 months ago

1.0.0-8c6654c3a

4 months ago

1.0.0-08f6f607d

4 months ago

1.0.0-9376e61a1

4 months ago

1.0.0-3e47d88fd

4 months ago

1.0.0-092861e23

4 months ago

1.0.0-8bbd43628

4 months ago

1.0.0-856ccd708

4 months ago

1.0.0-ddaa59a60

4 months ago

1.0.0-4691f4173

4 months ago

1.0.0-ee7ffe9b9

4 months ago

1.0.0-821a38e24

4 months ago

1.0.0-900236724

4 months ago

1.0.0-444d83751

4 months ago

1.0.0-d011f6130

4 months ago

1.0.0-528d73781

4 months ago

1.0.0-581574d6d

4 months ago

1.0.0-388d02b33

4 months ago

1.0.0-ba7089984

4 months ago

1.0.0-28587d24f

5 months ago

1.0.0-5d1f68e92

5 months ago

1.0.0-4e0135c7d

5 months ago

1.0.0-cd8cafcd5

5 months ago

1.0.0-6fd681d09

5 months ago

1.0.0-178fe2671

5 months ago

1.0.0-c00378909

5 months ago

1.0.0-83dfc7dc8

5 months ago

1.0.0-f71f2e14e

5 months ago

1.0.0-07f3afe2d

5 months ago

1.0.0-984f13e42

5 months ago

1.0.0-ad6f70bf3

5 months ago

1.0.0-230afea4b

5 months ago

1.0.0-a7c6a93c6

5 months ago

1.0.0-9eff7eff0

5 months ago

1.0.0-f81be145a

5 months ago

1.0.0-01e9a5fe4

5 months ago

1.0.0-742915567

5 months ago

1.0.0-341581166

5 months ago

1.0.0-6d11e8268

5 months ago

1.0.0-d10506189

5 months ago

1.0.0-64a915ae9

5 months ago

1.0.0-3bf6387ff

5 months ago

1.0.0-93890c8f9

5 months ago

1.0.0-887c6ffe1

5 months ago

1.0.0-16588d27c

5 months ago

1.0.0-bcfa15993

5 months ago

1.0.0-10ea19700

5 months ago

1.0.0-09dd02987

5 months ago

1.0.0-5a9362e21

5 months ago

1.0.0-738dd40f1

5 months ago

1.0.0-7861ed882

5 months ago

1.0.0-9197f10ba

5 months ago

1.0.0-e7167fe52

5 months ago

1.0.0-f537b3731

5 months ago

1.0.0-8c169db1b

5 months ago

1.0.0-561797a89

5 months ago

1.0.0-cf963694f

5 months ago

1.0.0-bca8d6e68

5 months ago

1.0.0-53224004f

5 months ago

1.0.0-273d8177c

5 months ago

1.0.0-6c1f0ee81

5 months ago

1.0.0-a32e70bac

5 months ago

1.0.0-06e6d235f

5 months ago

1.0.0-bcf18265e

5 months ago

1.0.0-8e4fbe13a

5 months ago

1.0.0-7682861f9

5 months ago

1.0.0-551622a96

5 months ago

1.0.0-8f921ee97

6 months ago

1.0.0-74e84bc29

6 months ago

1.0.0-8bb6d5333

6 months ago

1.0.0-7877a50e0

6 months ago

1.0.0-68db79f6b

6 months ago

1.0.0-e2267d437

6 months ago

1.0.0-4a474d54d

6 months ago

1.0.0-0b4a2ee79

6 months ago

1.0.0-6b6ba9ab7

6 months ago

1.0.0-d729d66a5

6 months ago

1.0.0-bb6ceb192

6 months ago

1.0.0-d8f5bc211

6 months ago

1.0.0-13a870cbe

6 months ago

1.0.0-3dee5df4d

6 months ago

1.0.0-adea7bbbf

6 months ago

1.0.0-6625a27fc

6 months ago

1.0.0-9c67c5b3d

6 months ago

1.0.0-05b52d69c

6 months ago

1.0.0-97ab31c0c

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago