Skip to content

Commit

Permalink
Improve README, remove bogus dump call
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Mar 4, 2011
1 parent 81d4bce commit c77b336
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ This project is an implementation of the Java Web Tokens draft
in JavaScript. The reference URL for the specification being implemented
is http://self-issued.info/docs/draft-jones-json-web-token-00.html.

Getting started:
After cloning the repo, you should be able to run the tests with:
make dist
open tests/jsonWebTokenTest.htm (in the web browser of your choice)


***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
Expand Down
1 change: 0 additions & 1 deletion src/jwt-token.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ WebToken.prototype =
var digestValue = algorithm.finalize();
var signatureValue = algorithm.sign();

dump(signatureValue+"\n");
return stringToSign + "." + signatureValue;
},

Expand Down

0 comments on commit c77b336

Please sign in to comment.