@solidus-network/auth 0.6.0 → 0.6.2
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/README.md +128 -18
- package/demo/unlinkability-demo.mjs +159 -0
- package/dist/challenge.d.ts +35 -0
- package/dist/challenge.d.ts.map +1 -1
- package/dist/challenge.js +39 -0
- package/dist/challenge.js.map +1 -1
- package/dist/envelope.d.ts +72 -0
- package/dist/envelope.d.ts.map +1 -0
- package/dist/envelope.js +153 -0
- package/dist/envelope.js.map +1 -0
- package/dist/index.d.ts +10 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/pairwise.d.ts +36 -0
- package/dist/pairwise.d.ts.map +1 -0
- package/dist/pairwise.js +115 -0
- package/dist/pairwise.js.map +1 -0
- package/dist/rp.d.ts +34 -0
- package/dist/rp.d.ts.map +1 -0
- package/dist/rp.js +59 -0
- package/dist/rp.js.map +1 -0
- package/dist/verify.d.ts +76 -1
- package/dist/verify.d.ts.map +1 -1
- package/dist/verify.js +137 -0
- package/dist/verify.js.map +1 -1
- package/package.json +39 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidus-network/auth",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "DID-based authentication for the Solidus Network protocol — Ed25519 challenge
|
|
3
|
+
"version": "0.6.2",
|
|
4
|
+
"description": "DID-based authentication and DID-less BBS+ selective-disclosure verification for the Solidus Network protocol — Ed25519 challenge/response, unlinkable presentation envelopes, and the relying-party issuer-key resolver.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -9,22 +9,54 @@
|
|
|
9
9
|
".": {
|
|
10
10
|
"import": "./dist/index.js",
|
|
11
11
|
"types": "./dist/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./envelope": {
|
|
14
|
+
"import": "./dist/envelope.js",
|
|
15
|
+
"types": "./dist/envelope.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./pairwise": {
|
|
18
|
+
"import": "./dist/pairwise.js",
|
|
19
|
+
"types": "./dist/pairwise.d.ts"
|
|
12
20
|
}
|
|
13
21
|
},
|
|
14
|
-
"files": [
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"demo",
|
|
25
|
+
"README.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
15
28
|
"dependencies": {
|
|
29
|
+
"@solidus-network/types": "0.6.2",
|
|
30
|
+
"@solidus-network/bbs": "0.6.2",
|
|
16
31
|
"@noble/ed25519": "^2.1.0",
|
|
17
|
-
"@noble/hashes": "^1.5.0"
|
|
32
|
+
"@noble/hashes": "^1.5.0",
|
|
33
|
+
"bs58": "^6.0.0"
|
|
18
34
|
},
|
|
19
|
-
"keywords": [
|
|
35
|
+
"keywords": [
|
|
36
|
+
"solidus",
|
|
37
|
+
"did",
|
|
38
|
+
"authentication",
|
|
39
|
+
"decentralized-identity",
|
|
40
|
+
"ed25519",
|
|
41
|
+
"challenge-response",
|
|
42
|
+
"signature",
|
|
43
|
+
"bbs",
|
|
44
|
+
"selective-disclosure",
|
|
45
|
+
"unlinkability",
|
|
46
|
+
"verifiable-presentation"
|
|
47
|
+
],
|
|
20
48
|
"author": "Solidus Network (https://solidus.network)",
|
|
21
49
|
"license": "Apache-2.0",
|
|
22
50
|
"homepage": "https://solidus.network",
|
|
23
|
-
"bugs": {
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/solidusnetwork/sdk/issues"
|
|
53
|
+
},
|
|
24
54
|
"repository": {
|
|
25
55
|
"type": "git",
|
|
26
56
|
"url": "git+https://github.com/solidusnetwork/sdk.git",
|
|
27
57
|
"directory": "auth"
|
|
28
58
|
},
|
|
29
|
-
"publishConfig": {
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
}
|
|
30
62
|
}
|