Skip to content

Commit 1ac0508

Browse files
authored
feat(README): private-key-converter web ui(#94)
* add private-key-converter to README.md * Update README.md
1 parent 36409d8 commit 1ac0508

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,12 @@ You can identify the format based on the the first line
191191

192192
### Converting `PKCS#1` to `PKCS#8`
193193

194+
- #### Using an Online Private Key Converter
195+
196+
Convert quickly using the Web interface at https://private-key-converter.vercel.app
197+
198+
- #### Using Node.js
199+
194200
If you use Node.js, you can convert the format before passing it to `universal-github-app-jwt`:
195201

196202
```js
@@ -210,7 +216,9 @@ const { token, appId, expiration } = await githubAppJwt({
210216
});
211217
```
212218

213-
But we recommend to convert the format using `openssl` before passing it to your app.
219+
- #### Using OpenSSL
220+
221+
Convert the format using `openssl` before passing it to your app.
214222

215223
```
216224
openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in private-key.pem -out private-key-pkcs8.key

0 commit comments

Comments
 (0)