We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
jwk
https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.3
Starting with
Jwt.claim("a", "b").jws().jwk(evidencePublicKey).sign();
Should produce a jwk header, as an RSA or EC public key representation.
Probably
Jwt.sign("evidence", List.of(evidencePublicKey));
Should produce a claim evidence containing a single array with jwk.
evidence
Main motivation is to support testing DPoP use cases but also to support other prod and test cases as needed.
I'll do a release once this issue is resolved
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
https://datatracker.ietf.org/doc/html/rfc7515#section-4.1.3
Starting with
Should produce a
jwk
header, as an RSA or EC public key representation.Probably
Should produce a claim
evidence
containing a single array withjwk
.Main motivation is to support testing DPoP use cases but also to support other prod and test cases as needed.
I'll do a release once this issue is resolved
The text was updated successfully, but these errors were encountered: