Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

82 Commits

Repository files navigation

jsonwebtoken Build Status

An implementation of JSON Web Tokens.

This was developed against draft-ietf-oauth-json-web-token-08. It makes use of node-jws

Install

$ npm install jsonwebtoken

Usage

jwt.sign(payload, secretOrPrivateKey, options)

(Synchronous) Returns the JsonWebToken as string

payload could be an literal, buffer or string

secretOrPrivateKey is a string or buffer containing either the secret for HMAC algorithms, or the PEM encoded private key for RSA and ECDSA.

options:

  • algorithm (default: HS256)
  • expiresInMinutes
  • audience
  • subject
  • issuer
  • noTimestamp

If payload is not a buffer or a string, it will be coerced into a string using JSON.stringify.

If any expiresInMinutes, audience, subject, issuer are not provided, there is no default. The jwt generated won't include those properties in the payload.

Generated jwts will include an iat claim by default unless noTimestamp is specified.

Example

// sign with default (HMAC SHA256)varjwt=require('jsonwebtoken');vartoken=jwt.sign({foo: 'bar'},'shhhhh');// sign with RSA SHA256varcert=fs.readFileSync('private.key');// get private keyvartoken=jwt.sign({foo: 'bar'},cert,{algorithm: 'RS256'});

jwt.verify(token, secretOrPublicKey, [options, callback])

(Asynchronous) If a callback is supplied, function acts asynchronously. Callback passed the payload decoded if the signature (and optionally expiration, audience, issuer) are valid. If not, it will be passed the error.

(Synchronous) If a callback is not supplied, function acts synchronously. Returns the payload decoded if the signature (and optionally expiration, audience, issuer) are valid. If not, it will throw the error.

token is the JsonWebToken string

secretOrPublicKey is a string or buffer containing either the secret for HMAC algorithms, or the PEM encoded public key for RSA and ECDSA.

options

  • audience: if you want to check audience (aud), provide a value here
  • issuer: if you want to check issuer (iss), provide a value here
// verify a token symmetric - synchronousvardecoded=jwt.verify(token,'shhhhh');console.log(decoded.foo)// bar// verify a token symmetricjwt.verify(token,'shhhhh',function(err,decoded){console.log(decoded.foo)// bar});// invalid token - synchronoustry{vardecoded=jwt.verify(token,'wrong-secret');}catch(err){// err}// invalid tokenjwt.verify(token,'wrong-secret',function(err,decoded){// err// decoded undefined});// verify a token asymmetricvarcert=fs.readFileSync('public.pem');// get public keyjwt.verify(token,cert,function(err,decoded){console.log(decoded.foo)// bar});// verify audiencevarcert=fs.readFileSync('public.pem');// get public keyjwt.verify(token,cert,{audience: 'urn:foo'},function(err,decoded){// if audience mismatch, err == invalid audience});// verify issuervarcert=fs.readFileSync('public.pem');// get public keyjwt.verify(token,cert,{audience: 'urn:foo',issuer: 'urn:issuer'},function(err,decoded){// if issuer mismatch, err == invalid issuer});

jwt.decode(token [, options])

(Synchronous) Returns the decoded payload without verifying if the signature is valid.

token is the JsonWebToken string

options:

  • json: force JSON.parse on the payload even if the header doesn't contain "typ":"JWT".

Example

// get the decoded payload ignoring signature, no secretOrPrivateKey neededvardecoded=jwt.decode(token);

Errors & Codes

Possible thrown errors during verification. Error is the first argument of the verification callback.

TokenExpiredError

Thrown error if the token is expired.

Error object:

  • name: 'TokenExpiredError'
  • message: 'jwt expired'
  • expiredAt: [ExpDate]
jwt.verify(token,'shhhhh',function(err,decoded){if(err){/* err = { name: 'TokenExpiredError', message: 'jwt expired', expiredAt: 1408621000 } */}});

JsonWebTokenError

Error object:

  • name: 'JsonWebTokenError'
  • message:
    • 'jwt malformed'
    • 'jwt signature is required'
    • 'invalid signature'
    • 'jwt audience invalid. expected: [PAYLOAD AUDIENCE]'
    • 'jwt issuer invalid. expected: [PAYLOAD ISSUER]'
jwt.verify(token,'shhhhh',function(err,decoded){if(err){/* err = { name: 'JsonWebTokenError', message: 'jwt malformed' } */}});

Algorithms supported

Array of supported algorithms. The following algorithms are currently supported.

alg Parameter ValueDigital Signature or MAC Algorithm
HS256HMAC using SHA-256 hash algorithm
HS384HMAC using SHA-384 hash algorithm
HS512HMAC using SHA-512 hash algorithm
RS256RSASSA using SHA-256 hash algorithm
RS384RSASSA using SHA-384 hash algorithm
RS512RSASSA using SHA-512 hash algorithm
ES256ECDSA using P-256 curve and SHA-256 hash algorithm
ES384ECDSA using P-384 curve and SHA-384 hash algorithm
ES512ECDSA using P-521 curve and SHA-512 hash algorithm
noneNo digital signature or MAC value included

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

TODO

  • X.509 certificate chain is not checked

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.

About

JsonWebToken implementation for node.js http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages