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
It looks like iat_leeway is not being used when verifying iat. I believe #272 fixes this. There's a spec that asserts global leeway is not used during this verification, so is iat_leeway not meant to be used?
The text was updated successfully, but these errors were encountered:
Only the exp and nbf claims should implement a leeway. The iat claim provides only information about the creation of the token. The exp and nbf tokens should be used for time based validations against the token.
The iat_leeway should be removed then from the code as it not specified in the RFC.
It looks like
iat_leeway
is not being used when verifying iat. I believe #272 fixes this. There's a spec that asserts global leeway is not used during this verification, so isiat_leeway
not meant to be used?The text was updated successfully, but these errors were encountered: