Skip to content

Commit 2764a64

Browse files
MitMaroziluvatar
authored andcommitted
Not Before (nbf) calculated based on iat/timestamp (#437)
fix #435
1 parent 25e0e62 commit 2764a64

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

sign.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ module.exports = function (payload, secretOrPrivateKey, options, callback) {
145145
}
146146

147147
if (typeof options.notBefore !== 'undefined') {
148-
payload.nbf = timespan(options.notBefore);
148+
payload.nbf = timespan(options.notBefore, timestamp);
149149
if (typeof payload.nbf === 'undefined') {
150150
return failure(new Error('"notBefore" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60'));
151151
}

test/iat.tests.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,13 @@ describe('iat', function () {
1212
expect(result.exp).to.be.closeTo(iat + expiresIn, 0.2);
1313
});
1414

15-
});
15+
it('should work with a nbf calculated based on numeric iat', function () {
16+
var dateNow = Math.floor(Date.now() / 1000);
17+
var iat = dateNow - 30;
18+
var notBefore = -50;
19+
var token = jwt.sign({foo: 123, iat: iat}, '123', {notBefore: notBefore});
20+
var result = jwt.verify(token, '123');
21+
expect(result.nbf).to.equal(iat + notBefore);
22+
});
23+
24+
});

0 commit comments

Comments
 (0)