You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The processing of the "nbf"
claim requires that the current date/time MUST be after or equal to
the not-before date/time listed in the "nbf" claim
In the example above, the current date/time is equal to the not-before date/time, so it shouldn't give an error.
I think the >= should be changed to >, because when equal the nbf should be valid.
The text was updated successfully, but these errors were encountered:
I'm getting this error:
From this line:
node-jsonwebtoken/index.js
Line 213 in f1fb176
The spec states:
https://tools.ietf.org/html/rfc7519#section-4.1.5
In the example above, the current date/time is equal to the not-before date/time, so it shouldn't give an error.
I think the
>=
should be changed to>
, because when equal the nbf should be valid.The text was updated successfully, but these errors were encountered: