-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ca7669
commit 84259b9
Showing
6 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
2 changes: 1 addition & 1 deletion
2
...site/docs/guides/configure-claims-sharing/main/oktaoidc/idpauthclaimssharing.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
When you use OpenID Connect with claims sharing, the data shared between an Okta IdP and an Okta SP is included in the ID token under a new reserved claim name called `okta-auth`. The `okta_auth` payload is in JWT format within the ID token. The Okta authentication JWT payload is securely encrypted with a published encryption key from the SP org. The payload contains information about authentication performed at the Okta IdP org. | ||
When you use OpenID Connect with claims sharing, the data shared between an Okta IdP and an Okta SP is included in the ID token under a new reserved claim name called `okta_auth`. The `okta_auth` payload is communicated in JSON within the ID token response and contains information about authentication performed at the Okta IdP org. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,6 @@ | |
"iss": "https://idp.okta.com", | ||
"nonce": "3byzgGdVLxjNUQ3X73rYgQBUc_DO4AJ2", | ||
"sub": "[email protected]", | ||
"okta_auth": {...encrypted JWT payload...} | ||
"okta_auth": {...JSON payload...} | ||
} | ||
``` |
2 changes: 1 addition & 1 deletion
2
...site/docs/guides/configure-claims-sharing/main/oktasaml/idpauthclaimssharing.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
When you use SAML 2.0 with claims sharing, the data shared between an Okta IdP and an Okta SP is included in the SAML response in a new reserved tag in the `Extension` section called `OktaAuth`. The content is communicated in a JSON Web Token embedded within the `Assertion` response. The Okta authentication JWT payload is securely encrypted with a published encryption key from the SP org. The payload contains information about authentication performed at the Okta IdP org. | ||
When you use SAML 2.0 with claims sharing, the data shared between an Okta IdP and an Okta SP is included in the SAML response in a new reserved tag in the `Extension` section called `OktaAuth`. This content is communicated in JSON within the `Assertion` response and contains information about authentication performed at the Okta IdP org. The entire assertion is securely encrypted with a published encryption key from the SP org. |
6 changes: 4 additions & 2 deletions
6
...vuepress-site/docs/guides/configure-claims-sharing/main/oktasaml/idpresponse.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
> **Note:** The `OktaAuth` JWT payload is redacted. | ||
> **Note:** The `OktaAuth` JWT payload is redacted and the response is truncated for brevity. | ||
```JSON | ||
..... | ||
<saml2:AuthnStatement AuthnInstant="2024-08-21T21:22:21.250Z" SessionIndex="id29513242525044581346797160"> | ||
<saml2:AuthnContext> | ||
<saml2:AuthnContextClassRef>urn:oasis:names:tc:SAML:2.0:ac:classes:X509</saml2:AuthnContextClassRef> | ||
<saml2:AuthnContextDecl> | ||
<AuthenticationContextDeclaration xmlns="urn:okta:saml:2.0:OktaAuth"> | ||
<Extension> | ||
<OktaAuth xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string"> | ||
...encrypted payload... | ||
...encrypted JWT payload... | ||
</OktaAuth> | ||
</Extension> | ||
</AuthenticationContextDeclaration> | ||
</saml2:AuthnContextDecl> | ||
</saml2:AuthnContext> | ||
</saml2:AuthnStatement> | ||
..... | ||
``` |
This file contains 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