@libp2p/crypto 5.1.13-e2bdc7e63 → 5.1.13-f88ec96cf
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.min.js.map +1 -1
- package/dist/src/pbkdf2.js +1 -1
- package/package.json +2 -2
- package/src/pbkdf2.ts +1 -1
package/dist/src/pbkdf2.js
CHANGED
|
@@ -6,7 +6,7 @@ import { base64 } from 'multiformats/bases/base64';
|
|
|
6
6
|
/**
|
|
7
7
|
* Maps an IPFS hash name to its @noble/hashes equivalent.
|
|
8
8
|
*
|
|
9
|
-
* See https://github.com/multiformats/
|
|
9
|
+
* See https://github.com/multiformats/multicodec/blob/master/table.csv
|
|
10
10
|
*
|
|
11
11
|
* @private
|
|
12
12
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/crypto",
|
|
3
|
-
"version": "5.1.13-
|
|
3
|
+
"version": "5.1.13-f88ec96cf",
|
|
4
4
|
"description": "Crypto primitives for libp2p",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/crypto#readme",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"generate": "protons ./src/keys/keys.proto"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@libp2p/interface": "3.1.0-
|
|
88
|
+
"@libp2p/interface": "3.1.0-f88ec96cf",
|
|
89
89
|
"@noble/curves": "^2.0.1",
|
|
90
90
|
"@noble/hashes": "^2.0.1",
|
|
91
91
|
"multiformats": "^13.4.0",
|
package/src/pbkdf2.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { base64 } from 'multiformats/bases/base64'
|
|
|
7
7
|
/**
|
|
8
8
|
* Maps an IPFS hash name to its @noble/hashes equivalent.
|
|
9
9
|
*
|
|
10
|
-
* See https://github.com/multiformats/
|
|
10
|
+
* See https://github.com/multiformats/multicodec/blob/master/table.csv
|
|
11
11
|
*
|
|
12
12
|
* @private
|
|
13
13
|
*/
|