0.0.0-development • Published 7 years ago

a-jwk-generator v0.0.0-development

Weekly downloads
9
License
Apache-2.0
Repository
github
Last release
7 years ago

a-jwk-generator

Travis Codecov npm npm license

A generator for creating JSON web Keys. Only 256 bit HMAC Keys are supported yet. It uses the package 'node-jose'.

Installation

npm install a-jwk-generator 

Usage

const { generateHMACKey } = require('a-jwk-generator');

const jwk = generateHMACKey();

Tests

Install dev dependencies with npm install, then npm test.