Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jlorgal committed Jun 25, 2015
1 parent 438a176 commit b0ddd5a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jwt-utils
=========

TDAF JSON Web Tokens (JWT) utils.
JSON Web Tokens (JWT) utils.

[![npm version](https://badge.fury.io/js/jwt-utils.svg)](http://badge.fury.io/js/jwt-utils)
[![Build Status](https://travis-ci.org/telefonica/node-jwt-utils.svg)](https://travis-ci.org/telefonica/node-jwt-utils)
Expand Down
8 changes: 5 additions & 3 deletions lib/jwt-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@

'use strict';

var crypto = require('crypto'),
debug = require('debug')('tef:base:jwtUtils'),
errors = require('./errors'),
var crypto = require('crypto');
var debugLib = require('debug'),
_ = require('underscore'),
jwa = require('jwa');
var errors = require('./errors');

var debug = debugLib('tef:base:jwtUtils');

var hashAlgorithms = {
HS256: 'sha256',
Expand Down

0 comments on commit b0ddd5a

Please sign in to comment.