Skip to content

iat selective disclosable #16

@fmarino-ipzs

Description

@fmarino-ipzs

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions