@sd-jwt/crypto-nodejs 0.3.2-next.62 → 0.3.2-next.64
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 +39 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+

|
|
4
|
+

|
|
5
|
+
|
|
6
|
+
# SD-JWT Implementation in JavaScript (TypeScript)
|
|
7
|
+
|
|
8
|
+
## SD-JWT Nodejs Crypto
|
|
9
|
+
|
|
10
|
+
### About
|
|
11
|
+
|
|
12
|
+
Nodejs Crypto support for SD JWT
|
|
13
|
+
|
|
14
|
+
Check the detail description in our github [repo](https://github.com/openwallet-foundation-labs/sd-jwt-js).
|
|
15
|
+
|
|
16
|
+
### Installation
|
|
17
|
+
|
|
18
|
+
To install this project, run the following command:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# using npm
|
|
22
|
+
npm install @sd-jwt/crypto-nodejs
|
|
23
|
+
|
|
24
|
+
# using yarn
|
|
25
|
+
yarn add @sd-jwt/crypto-nodejs
|
|
26
|
+
|
|
27
|
+
# using pnpm
|
|
28
|
+
pnpm install @sd-jwt/crypto-nodejs
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Ensure you have Node.js installed as a prerequisite.
|
|
32
|
+
|
|
33
|
+
### Usage
|
|
34
|
+
|
|
35
|
+
Check out more details in our [documentation](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/next/docs) or [examples](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/next/examples)
|
|
36
|
+
|
|
37
|
+
### Dependencies
|
|
38
|
+
|
|
39
|
+
None
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-jwt/crypto-nodejs",
|
|
3
|
-
"version": "0.3.2-next.
|
|
3
|
+
"version": "0.3.2-next.64+0f4cd5d",
|
|
4
4
|
"description": "sd-jwt draft 7 implementation in typescript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"esm"
|
|
50
50
|
]
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "0f4cd5d136936e2add0172bed5ab92ee3ce255fd"
|
|
53
53
|
}
|