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
Currently section ‘Validity Period of the Signature and the Claim Values’ has this to say about iat claim:
iat and exp JWT claims express both the validity period of both the signature and the claims about the subject, unless there is a separate claim used to express the validity of the claims.
Why is it implied that iat claim has temporal validation rules? The JWT standard does not define any rules for iat in section 4.1.6. "iat" (Issued At) Claim.
Meanwhile, the JWT standard has temporal validation rules for nbf claim in section 4.1.5. "nbf" (Not Before) Claim, but HAIP does not mention that claim.
I created a pull request #165 that proposes adding nbf to the claims table in section ‘SD-JWT VCs’ and replacing iat in section ‘Validity Period of the Signature and the Claim Values’ with nbf.
The text was updated successfully, but these errors were encountered:
nbf is only useful if tokens are going to be future-dated and not valid when issued. That doesn't match our use cases. Therefore, we should not add or mention nbf.
The iat Claim can be used to reject tokens that were issued too far away from the current time, limiting the amount of time that nonces need to be stored to prevent attacks. The acceptable range is Client specific.
Currently section ‘Validity Period of the Signature and the Claim Values’ has this to say about
iat
claim:Why is it implied that
iat
claim has temporal validation rules? The JWT standard does not define any rules foriat
in section 4.1.6. "iat" (Issued At) Claim.Meanwhile, the JWT standard has temporal validation rules for
nbf
claim in section 4.1.5. "nbf" (Not Before) Claim, but HAIP does not mention that claim.I created a pull request #165 that proposes adding
nbf
to the claims table in section ‘SD-JWT VCs’ and replacingiat
in section ‘Validity Period of the Signature and the Claim Values’ withnbf
.The text was updated successfully, but these errors were encountered: