1.1.0 • Published 5 years ago

jws-lite v1.1.0

Weekly downloads
3,944
License
MIT
Repository
github
Last release
5 years ago

jws-lite

Install

npm install jws-lite

Usage

const jws = require('jws-lite')

const decoded = jws.decode('someJWS');
const {
  header,         // jose header
  payload,        // payload as a binary string
  signedContent,  // UintArray of the signed content
  signature       // UintArray of the signature
} = decoded;

jws.sign(payload, jwk)
.then(jwsToken => console.log(jwsToken))

jws.verify(jwsToken, jwk)
.then(payload => console.log(payload))

Can it be smaller?

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

import { sign } from 'jws-lite'

License

MIT