Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iat selective disclosable #16

Open
fmarino-ipzs opened this issue Jan 31, 2024 · 0 comments · May be fixed by #18
Open

iat selective disclosable #16

fmarino-ipzs opened this issue Jan 31, 2024 · 0 comments · May be fixed by #18

Comments

@fmarino-ipzs
Copy link

fmarino-ipzs commented Jan 31, 2024

according to the latest version of the specification, iat is now selective disclosable. In generate.py this is given as default claim, making selective disclosure of iat not possible.

 if include_default_claims:
     claims = {
          "iss": settings["identifiers"]["issuer"],
          "iat": settings["iat"],
          "exp": settings["exp"],
     }

It should become:

 if include_default_claims:
     claims = {
          "iss": settings["identifiers"]["issuer"],
          "exp": settings["exp"],
     }

In addition, in the master settings.yml iat should be removed and should be added in the specification.yml file within the specific example folder.

@peppelinux peppelinux linked a pull request Feb 17, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant