@icedevml/tinypki-client-side-cert-req 0.4.5 → 0.4.7
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 +6 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,12 +6,16 @@ A part of TinyPKI project, with the intention to facilitate higher adoption of m
|
|
|
6
6
|
* Client-side PKCS#10 Certificate Signing Request (CSR) generation using Web Crypto API key pairs (supported: RSA/ECDSA/Ed25519);
|
|
7
7
|
* Bundling PEM certificate chain and private key together into PKCS#12 container (`.P12` or `.PFX` file);
|
|
8
8
|
|
|
9
|
+
## Demo
|
|
10
|
+
|
|
11
|
+
See the **[library demo](https://icedevml.github.io/tinypki-client-side-cert-req/)** for further reference.
|
|
12
|
+
|
|
9
13
|
## Installation
|
|
10
14
|
|
|
11
15
|
This library is distributed in two formats.
|
|
12
16
|
|
|
13
17
|
### ESM library
|
|
14
|
-
Suitable for SPA frameworks (like React.js), available on npmjs.com
|
|
18
|
+
Suitable for SPA frameworks (like React.js), available on NPM Registry as [@icedevml/tinypki-client-side-cert-req](https://www.npmjs.com/package/@icedevml/tinypki-client-side-cert-req).
|
|
15
19
|
|
|
16
20
|
```bash
|
|
17
21
|
npm install --save @icedevml/tinypki-client-side-cert-req
|
|
@@ -26,7 +30,7 @@ Download: **[tinypki-client-side-cert-req-lib.js](https://github.com/icedevml/ti
|
|
|
26
30
|
|
|
27
31
|
## Usage
|
|
28
32
|
|
|
29
|
-
See [`demo/`](https://github.com/icedevml/tinypki-client-side-cert-req/tree/master/demo) directory for
|
|
33
|
+
See [`demo/`](https://github.com/icedevml/tinypki-client-side-cert-req/tree/master/demo) directory for usage examples.
|
|
30
34
|
|
|
31
35
|
## Manual building
|
|
32
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icedevml/tinypki-client-side-cert-req",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"description": "TinyPKI ClientSideCertReq Library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/icedevml/tinypki-client-side-cert-req/issues"
|
|
13
13
|
},
|
|
14
|
-
"homepage": "https://github.com/icedevml/tinypki-client-side-cert-req
|
|
14
|
+
"homepage": "https://github.com/icedevml/tinypki-client-side-cert-req",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
17
|
"import": "./dist/index.js",
|