From c77b336d5b42189160817d09bb7eb1eb523dc309 Mon Sep 17 00:00:00 2001 From: "mhanson@gmail.com" Date: Fri, 4 Mar 2011 09:50:30 -0800 Subject: [PATCH] Improve README, remove bogus dump call --- README | 5 +++++ src/jwt-token.js | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README b/README index 58f144b..0e2218b 100644 --- a/README +++ b/README @@ -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 diff --git a/src/jwt-token.js b/src/jwt-token.js index 23425ad..ee3f9d4 100644 --- a/src/jwt-token.js +++ b/src/jwt-token.js @@ -97,7 +97,6 @@ WebToken.prototype = var digestValue = algorithm.finalize(); var signatureValue = algorithm.sign(); - dump(signatureValue+"\n"); return stringToSign + "." + signatureValue; },