Adds ID-JAG JWT Bearer grant support (draft-ietf-oauth-identity-assertion-authz-grant-03) - #301
Open
aditya-okta wants to merge 2 commits into
Open
Adds ID-JAG JWT Bearer grant support (draft-ietf-oauth-identity-assertion-authz-grant-03)#301aditya-okta wants to merge 2 commits into
aditya-okta wants to merge 2 commits into
Conversation
…rtion-authz-grant-03)
Covers the three fixes: non-200 responses in NewOIDCIssuerKeyResolver now return errors assertion is stored in tgr.Assertion to avoid Request nil dereference, and parseECPublicKey rejects off-curve points early.
Author
|
@LyricTian, can you please take a look at this PR ? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat: implement Identity Assertion Authorization Grant (ID-JAG) — RFC 7523
Implements the Identity Assertion JWT Authorization Grant per draft-ietf-oauth-identity-assertion-authz-grant-03 (https://datatracker.ietf.org/doc/draft-ietf-oauth-identity-assertion-authz-grant/),
allowing this server to act as a Resource Authorization Server that accepts ID-JAG assertions from trusted external IdPs and issues scoped access tokens.
What's new
Grant registration (const.go)
Assertion validation (server/idjag.go)
Grant handler (server/server.go)
Replay store (store_replay.go)
Config (server/config.go, manage/config.go, manage/manager.go)
Error mapping (errors/)
Tests