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

SD_JWT_TYP_HEADER is not set correctly #9

Closed
risajef opened this issue Oct 5, 2023 · 4 comments
Closed

SD_JWT_TYP_HEADER is not set correctly #9

risajef opened this issue Oct 5, 2023 · 4 comments

Comments

@risajef
Copy link

risajef commented Oct 5, 2023

Maybe I don't understand it. But in my use-case, I want to create a SDJWT.
I do it with the following code:

def make_sdjwt(data, jwc_jwk_priv, signing_algorithm):
    sd_issuer = SDJWTIssuer(data, jwc_jwk_priv, sign_alg=signing_algorithm)
    return sd_issuer.sd_jwt_issuance

But this does not set the SD_JWT_HEADER field. How do I set it? Or is it a bug?

The resulting sd-jwt is therefore missing the type field in the header.

@peppelinux
Copy link
Member

peppelinux commented Oct 9, 2023

yes, SD_JWT_HEADER is provided as an internal class attribute
https://github.com/search?q=repo%3Aopenwallet-foundation-labs/sd-jwt-python%20SDJWTCommon&type=code

for changing it it seems that you have to overload your own class and inherit a specialized SDJWTCommon class, or differently overload the specific attribute after having create a SDJWTIssuer object

@peppelinux
Copy link
Member

or better, @danielfett correct me if I'm wrong, it can be passed with the extra_header_parameters, since it will be overloaded with the dict update, see these

extra_header_parameters: Dict = None,

if self._extra_header_parameters:

@risajef
Copy link
Author

risajef commented Oct 11, 2023

You are right. I had an old version as it seems. I did not have the extra_header_parameters field.

@risajef risajef closed this as completed Oct 11, 2023
@peppelinux
Copy link
Member

This PR configures a new version as well
#10

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

No branches or pull requests

2 participants