Skip to content

Commit 03d6ee2

Browse files
committed
JWT: make 'signature' a link
1 parent 7ab4a85 commit 03d6ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/jwt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: jwt
33
title: Example: JWT
44
---
55

6-
A [JSON Web Token](https://en.wikipedia.org/wiki/JSON_Web_Token) consists of three parts - a header a payload and a signature - each encoded separately using [Base64url](https://en.wikipedia.org/wiki/Base64#URL_applications) (`\phpseclib3\Common\Functions\Strings::base64url_encode()`) and concatenated together using periods. eg.
6+
A [JSON Web Token](https://en.wikipedia.org/wiki/JSON_Web_Token) consists of three parts - a header a payload and a [signature](https://en.wikipedia.org/wiki/JSON_Web_Signature) - each encoded separately using [Base64url](https://en.wikipedia.org/wiki/Base64#URL_applications) (`\phpseclib3\Common\Functions\Strings::base64url_encode()`) and concatenated together using periods. eg.
77

88
```
99
const token = base64urlEncoding(header) + '.' +

0 commit comments

Comments
 (0)