Skip to content

Commit ec88079

Browse files
committed
Merge branch 'jonekdahl-verify-unsigned-tokens'
2 parents afb3285 + 7b0ba50 commit ec88079

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

index.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,20 @@ JWT.verify = function(jwtString, secretOrPublicKey, options, callback) {
7171
return done(new JsonWebTokenError('jwt malformed'));
7272
}
7373

74-
if (parts[2].trim() === '' && secretOrPublicKey){
74+
var hasSignature = parts[2].trim() !== '';
75+
76+
if (!hasSignature && secretOrPublicKey){
7577
return done(new JsonWebTokenError('jwt signature is required'));
7678
}
7779

78-
if (!secretOrPublicKey) {
80+
if (hasSignature && !secretOrPublicKey) {
7981
return done(new JsonWebTokenError('secret or public key must be provided'));
8082
}
8183

84+
if (!hasSignature && !options.algorithms) {
85+
options.algorithms = ['none'];
86+
}
87+
8288
if (!options.algorithms) {
8389
options.algorithms = ~secretOrPublicKey.toString().indexOf('BEGIN CERTIFICATE') ||
8490
~secretOrPublicKey.toString().indexOf('BEGIN PUBLIC KEY') ?

test/verify.tests.js

+18
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,24 @@ describe('verify', function() {
2828
});
2929
});
3030

31+
it('should be able to validate unsigned token', function (done) {
32+
var header = { alg: 'none' };
33+
var payload = { iat: Math.floor(Date.now() / 1000 ) };
34+
35+
var signed = jws.sign({
36+
header: header,
37+
payload: payload,
38+
secret: priv,
39+
encoding: 'utf8'
40+
});
41+
42+
jwt.verify(signed, null, {typ: 'JWT'}, function(err, p) {
43+
assert.isNull(err);
44+
assert.deepEqual(p, payload);
45+
done();
46+
});
47+
});
48+
3149
describe('expiration', function () {
3250
// { foo: 'bar', iat: 1437018582, exp: 1437018583 }
3351
var token = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJmb28iOiJiYXIiLCJpYXQiOjE0MzcwMTg1ODIsImV4cCI6MTQzNzAxODU4M30.NmMv7sXjM1dW0eALNXud8LoXknZ0mH14GtnFclwJv0s';

0 commit comments

Comments
 (0)