-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Support for DPoP #535
Comments
I don't know much about DPoP, but looking at the RFC, it seems like JWTs are used in DPoP, not the other way around. So this library should be able to help you implement DPoP, but there may not be a specific DPoP support added here. |
I believe DPoP requires you to create your own JWK. Is creating a JWK something that could be added to php-jwt? |
You can create a JWT using this library. That and validating JWTs are this library's main function. See JWT::encode Line 199 in 29fa2ce
|
I believe DPoP requires you to create your own JWK, not JWT. At least from looking at this tutorial - https://developer.okta.com/docs/guides/dpop/nonoktaresourceserver/main |
I think generating a JWK is definitely within the scope of this library, but I am not sure that I know what that particular method would look like or why it would be useful. It would take some designing. |
Does this library support DPoP (Demonstration of Proof-of-Procession)?
If so, any sample code?
The text was updated successfully, but these errors were encountered: