Skip to content

Commit 6b50ff3

Browse files
committed
fix issue with buffer payload. closes #216
1 parent 184f28d commit 6b50ff3

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

sign.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@ var options_for_objects = [
4444
module.exports = function (payload, secretOrPrivateKey, options, callback) {
4545
options = options || {};
4646

47+
var isObjectPayload = typeof payload === 'object' &&
48+
!Buffer.isBuffer(payload);
49+
4750
var header = xtend({
4851
alg: options.algorithm || 'HS256',
49-
typ: typeof payload === 'object' ? 'JWT' : undefined
52+
typ: isObjectPayload ? 'JWT' : undefined
5053
}, options.header);
5154

5255
function failure(err) {
@@ -56,17 +59,18 @@ module.exports = function (payload, secretOrPrivateKey, options, callback) {
5659
throw err;
5760
}
5861

62+
5963
if (typeof payload === 'undefined') {
6064
return failure(new Error('payload is required'));
61-
} else if (typeof payload === 'object') {
65+
} else if (isObjectPayload) {
6266
var payload_validation_result = registered_claims_schema.validate(payload);
6367

6468
if (payload_validation_result.error) {
6569
return failure(payload_validation_result.error);
6670
}
6771

6872
payload = xtend(payload);
69-
} else if (typeof payload !== 'object') {
73+
} else {
7074
var invalid_options = options_for_objects.filter(function (opt) {
7175
return typeof options[opt] !== 'undefined';
7276
});

test/buffer.tests.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var jwt = require("../.");
2+
var assert = require('chai').assert;
3+
4+
describe('buffer payload', function () {
5+
it('should work', function () {
6+
var payload = new Buffer('TkJyotZe8NFpgdfnmgINqg==', 'base64');
7+
var token = jwt.sign(payload, "signing key");
8+
assert.equal(jwt.decode(token), payload.toString());
9+
});
10+
});

0 commit comments

Comments
 (0)