JWT Key Generator is a tiny JavaScript library for generating cryptographic keys for JSON Web Tokens using Node's Web Crypto API.
Algorithm | Supported | Algorithm | Supported |
---|---|---|---|
HS256 | ✔️ | RS256 | ✔️ |
HS384 | ✔️ | RS384 | ✔️ |
HS512 | ✔️ | RS512 | ✔️ |
A128KW | ✔️ | PS256 | ✔️ |
A192KW | ✔️ | PS384 | ✔️ |
A256KW | ✔️ | PS512 | ✔️ |
A128GCM | ✔️ | RSA-OAEP | ✔️ |
A192GCM | ✔️ | RSA-OAEP-256 | ✔️ |
A256GCM | ✔️ | RSA-OAEP-384 | ✔️ |
A128GCMKW | ✔️ | RSA-OAEP-512 | ✔️ |
A192GCMKW | ✔️ | ES256 | ✔️ |
A256GCMKW | ✔️ | ES384 | ✔️ |
ES512 | ✔️ | ||
EdDSA | ❌ |
See RFC 7518 for a detailed description of the algorithms.
npm install jwt-key-generator
const { generateSecret } = require('jwt-key-generator');
// async/await
let secret = await generateSecret('HS256');
console.log(secret);
// promise
generateSecret('HS256').then(key => {
console.log(key);
})
const { generateKeyPair } = require('jwt-key-generator');
// async/await
const keypair = await generateKeyPair('RS256');
console.log(keypair.publicKey); // Public Key
console.log(keypair.privateKey); // Private Key
// promise
generateKeyPair('RS256').then(keypair => {
console.log(keypair.publicKey);
console.log(keypair.privateKey);
});
You can also choose to return the generated key as a KeyObject
by passing an additional object as an argument with toKeyObject: true
.
This allows you to conveniently use this library with JWT libraries such as jsonwebtoken.
const { generateSecret } = require('jwt-key-generator');
let secret = await generateSecret('HS256', { toKeyObject: true });
let keypair = await generateKeyPair('RS256', { toKeyObject: true });
You can also convert the key to other formats supported by Web Crypto API's subtle.exportKey(): spki
, pkcs8
, jwk
, and raw
.
const { exportKey, generateSecret } = require('jwt-key-generator');
const secret = await generateSecret('HS256');
const exported = await exportKey(secret, 'jwk');
console.log(exported); // JSON Web Key
This library works with JWT libraries such as jsonwebtoken. To do so, simply pass the generated key as a KeyObject
to .sign()
and .verify()
:
const jwt = require('jsonwebtoken');
const { generateSecret } = require('jwt-key-generator');
let secret = await generateSecret('HS256', { toKeyObject: true });
let payload = { id: 123 };
let token = jwt.sign(payload, secret);
console.log(token);
let decoded = jwt.verify(token, secret);
console.log(decoded);
git clone https://github.com/starkfire/jwt-key-generator.git
cd jwt-key-generator
npm install
npm run build
npm test
If you are interested to submit issues and pull requests, contributions are highly welcome. Consider checking out CONTRIBUTING.md.
- generates and returns a secret key
- Parameters:
- algorithm (
<string>
)- JWT algorithm
- must be either one of the following algorithms:
HS256
,HS384
,HS512
,A128KW
,A192KW
,A256KW
,A128GCM
,A192GCM
,A256GCM
,A128GCMKW
,A192GCMKW
, orA256GCMKW
.
- options (
<object>
)- specifies additional options before the function returns the key
extractable
(<boolean>
)- if
true
, the returnedCryptoKey
can be exported to other formats usingexportKey()
- default value is
true
- if
toKeyObject
(<boolean>
)- if
true
, the key will be returned as aKeyObject
instead ofCryptoKey
- default value is
false
- if
- specifies additional options before the function returns the key
- algorithm (
- Returns:
- key (
<CryptoKey | KeyObject>
)
- key (
- generates and returns a public and private key pair
- Parameters:
- algorithm (
<string>
)- JWT algorithm
- must be either one of the following algorithms:
RS256
,RS384
,RS512
,PS256
,PS384
,PS512
,RSA-OAEP
,RSA-OAEP-256
,RSA-OAEP-384
, orRSA-OAEP-512
.
- options (
<object>
)- specifies additional options before the function returns the key
extractable
(<boolean>
)- when
true
, the returnedCryptoKey
can be exported to other formats usingexportKey()
- default value is
true
- when
toKeyObject
(<boolean>
)- if
true
, the public and private keys will be returned asKeyObject
instead ofCryptoKey
- default value is
false
- if
- specifies additional options before the function returns the key
- algorithm (
- Returns:
- key (
<object>
)- returns an object which contains the key pair
publicKey
(<CryptoKey>
)privateKey
(<CryptoKey>
)
- returns an object which contains the key pair
- key (
- returns an input
CryptoKey
on a different format (spki
/pkcs8
/jwk
/raw
) - Parameters:
- key (
<CryptoKey>
)- cryptographic key
- this key may refer to the value returned by
generateSecret()
andgenerateKeyPair()
- format (
<string>
)- can be either one of the following formats recognized by Web Crypto API's subtle.exportKey() (
spki
,pkcs8
,jwk
, orraw
)
- can be either one of the following formats recognized by Web Crypto API's subtle.exportKey() (
- key (
- Returns:
- key (
<ArrayBuffer>
)- returns the transformed key
- the transformed key will be returned with the following types, depending on the target format
<ArrayBuffer>
(forpkcs8
,spki
, andraw
)<object>
(forjwk
)
- key (
- takes an input
CryptoKey
and converts it toKeyObject
- Parameters:
- key (
<CryptoKey>
)- cryptographic key
- this key may refer to the value returned by
generateSecret()
andgenerateKeyPair()
- key (
- Returns:
- key (
<KeyObject>
)- returns the same key in
KeyObject
format
- returns the same key in
- key (