Skip to content

Commit e202c4f

Browse files
committed
Make Options object optional for callback-ish sign
1 parent 636fbd0 commit e202c4f

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $ npm install jsonwebtoken
1515

1616
# Usage
1717

18-
### jwt.sign(payload, secretOrPrivateKey, options, [callback])
18+
### jwt.sign(payload, secretOrPrivateKey, [options, callback])
1919

2020
(Asynchronous) If a callback is supplied, callback is called with the `err` or the JWT.
2121

sign.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ var options_for_objects = [
4343
];
4444

4545
module.exports = function (payload, secretOrPrivateKey, options, callback) {
46-
options = options || {};
46+
if (typeof options === 'function') {
47+
callback = options;
48+
options = {};
49+
} else {
50+
options = options || {};
51+
}
4752

4853
var isObjectPayload = typeof payload === 'object' &&
4954
!Buffer.isBuffer(payload);

test/async_sign.tests.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,20 @@ describe('signing a token asynchronously', function() {
1818
});
1919
});
2020

21-
it('should work', function (done) {
21+
it('should work with empty options', function (done) {
2222
jwt.sign({abc: 1}, "secret", {}, function (err, res) {
2323
expect(err).to.be.null();
2424
done();
2525
});
2626
});
2727

28+
it('should work without options object at all', function (done) {
29+
jwt.sign({abc: 1}, "secret", function (err, res) {
30+
expect(err).to.be.null();
31+
done();
32+
});
33+
});
34+
2835
it('should return error when secret is not a cert for RS256', function(done) {
2936
//this throw an error because the secret is not a cert and RS256 requires a cert.
3037
jwt.sign({ foo: 'bar' }, secret, { algorithm: 'RS256' }, function (err) {

test/jwt.hs.tests.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('HS256', function() {
1515
expect(token.split('.')).to.have.length(3);
1616
});
1717

18-
it('should without options', function(done) {
18+
it('should be able to validate without options', function(done) {
1919
var callback = function(err, decoded) {
2020
assert.ok(decoded.foo);
2121
assert.equal('bar', decoded.foo);
@@ -77,6 +77,13 @@ describe('HS256', function() {
7777
done();
7878
});
7979
});
80+
81+
it('should default to HS256 algorithm when no options are passed', function() {
82+
var token = jwt.sign({ foo: 'bar' }, secret);
83+
var verifiedToken = jwt.verify(token, secret);
84+
assert.ok(verifiedToken.foo);
85+
assert.equal('bar', verifiedToken.foo);
86+
});
8087
});
8188

8289
describe('should fail verification gracefully with trailing space in the jwt', function() {

0 commit comments

Comments
 (0)