Skip to content

Commit 14f6db9

Browse files
authored
Merge pull request #213749 from nickludwig/patch-11
x5t is base64url encoded, not base64
2 parents 66eeca9 + 3a111b5 commit 14f6db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/active-directory-certificate-credentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To compute the assertion, you can use one of the many JWT libraries in the langu
3333
| --- | --- |
3434
| `alg` | Should be **RS256** |
3535
| `typ` | Should be **JWT** |
36-
| `x5t` | Base64-encoded SHA-1 thumbprint of the X.509 certificate. For example, given an X.509 certificate hash of `84E05C1D98BCE3A5421D225B140B36E86A3D5534` (Hex), the `x5t` claim would be `hOBcHZi846VCHSJbFAs26Go9VTQ=` (Base64). |
36+
| `x5t` | Base64url-encoded SHA-1 thumbprint of the X.509 certificate's DER encoding. For example, given an X.509 certificate hash of `84E05C1D98BCE3A5421D225B140B36E86A3D5534` (Hex), the `x5t` claim would be `hOBcHZi846VCHSJbFAs26Go9VTQ` (Base64url). |
3737

3838
### Claims (payload)
3939

0 commit comments

Comments
 (0)