Socket
Book a DemoInstallSign in
Socket

jwk-lite

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jwk-lite

isomorphic library to generate, import, and export JSON Web Keys

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

jwk-lite

Install

npm install jwk-lite

Usage

const jwk = require('jwk-lite')

jwk.generateKey('HS256')
.then(keys => {
  console.log(keys.sharedKey)
})

jwk.generateKey('PS256')
.then(keys => {
  console.log(keys.publicKey)
  console.log(keys.privateKey)
})

jwk.generateKey('RS256')
.then(keys => {
  console.log(keys.publicKey)
  console.log(keys.privateKey)
})

jwk.generateKey('ES256')
.then(keys => {
  console.log(keys.publicKey)
  console.log(keys.privateKey)
})

jwk.exportKey(key)
.then(jsonJwk => console.log(jsonJwk))

jwk.import(jsonJwk)
.then(key => console.log(key))

Can it be smaller?

If you use ES6 imports with a bundler that supports tree-shaking, yes!

import { generateKey } from 'jwk-lite'

License

MIT

Keywords

JOSE

FAQs

Package last updated on 09 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts