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

Update certificate-credentials.md #1301

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/identity-platform/certificate-credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To compute the assertion, you can use one of the many JWT libraries in the langu
| --- | --- |
| `alg` | Should be **PS256** |
| `typ` | Should be **JWT** |
| `x5t#S256` | Base64url-encoded SHA-256 thumbprint of the X.509 certificate's DER encoding. |
| `x5t` | Base64url-encoded SHA-256 thumbprint of the X.509 certificate's DER encoding. |

### Claims (payload)

Expand All @@ -55,7 +55,7 @@ The signature is computed by applying the certificate as described in the [JSON
{
"alg": "PS256",
"typ": "JWT",
"x5t#S256": "A1bC2dE3fH4iJ5kL6mN7oP8qR9sT0u"
"x5t": "A1bC2dE3fH4iJ5kL6mN7oP8qR9sT0u"
}
.
{
Expand Down