@libp2p/pnet 1.0.1 → 2.0.0-1210884ed
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +20 -5
- package/dist/index.min.js +2 -15
- package/dist/src/crypto.d.ts +2 -1
- package/dist/src/crypto.d.ts.map +1 -1
- package/dist/src/crypto.js +2 -2
- package/dist/src/crypto.js.map +1 -1
- package/dist/src/errors.d.ts +0 -1
- package/dist/src/errors.d.ts.map +1 -1
- package/dist/src/errors.js +0 -1
- package/dist/src/errors.js.map +1 -1
- package/dist/src/index.d.ts +11 -4
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +22 -28
- package/dist/src/index.js.map +1 -1
- package/dist/src/key-generator.js.map +1 -1
- package/package.json +24 -17
- package/src/crypto.ts +5 -4
- package/src/errors.ts +0 -1
- package/src/index.ts +38 -33
package/README.md
CHANGED
@@ -1,14 +1,29 @@
|
|
1
|
-
|
1
|
+
# @libp2p/pnet
|
2
2
|
|
3
3
|
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
|
4
4
|
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
|
5
5
|
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p)
|
6
|
-
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p/main.yml?branch=
|
6
|
+
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p/main.yml?branch=main\&style=flat-square)](https://github.com/libp2p/js-libp2p/actions/workflows/main.yml?query=branch%3Amain)
|
7
7
|
|
8
8
|
> Implementation of Connection protection management via a shared secret
|
9
9
|
|
10
10
|
# About
|
11
11
|
|
12
|
+
<!--
|
13
|
+
|
14
|
+
!IMPORTANT!
|
15
|
+
|
16
|
+
Everything in this README between "# About" and "# Install" is automatically
|
17
|
+
generated and will be overwritten the next time the doc generator is run.
|
18
|
+
|
19
|
+
To make changes to this section, please update the @packageDocumentation section
|
20
|
+
of src/index.js or src/index.ts
|
21
|
+
|
22
|
+
To experiment with formatting, please run "npm run docs" from the root of this
|
23
|
+
repo and examine the changes made.
|
24
|
+
|
25
|
+
-->
|
26
|
+
|
12
27
|
Connection protection management for libp2p leveraging PSK encryption via XSalsa20.
|
13
28
|
|
14
29
|
## Example
|
@@ -53,7 +68,7 @@ node -e "import('@libp2p/pnet').then(({ generateKey }) => generateKey(process.st
|
|
53
68
|
|
54
69
|
### Programmatically
|
55
70
|
|
56
|
-
```
|
71
|
+
```TypeScript
|
57
72
|
import fs from 'fs'
|
58
73
|
import { generateKey } from '@libp2p/pnet'
|
59
74
|
|
@@ -85,8 +100,8 @@ Loading this module through a script tag will make it's exports available as `Li
|
|
85
100
|
|
86
101
|
Licensed under either of
|
87
102
|
|
88
|
-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
|
89
|
-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
|
103
|
+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p/blob/main/packages/pnet/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
|
104
|
+
- MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p/blob/main/packages/pnet/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
|
90
105
|
|
91
106
|
# Contribution
|
92
107
|
|