JWT: Difference between revisions
| Line 5: | Line 5: | ||
* <PAYLOAD> tells who is making the request | * <PAYLOAD> tells who is making the request | ||
* <SIGNATURE> ensure the correctness (not tampered, trusted source) | * <SIGNATURE> ensure the correctness (not tampered, trusted source) | ||
** <SIGNATURE> = function(<HEADER>,<PAYLOAD>,<SECRET) | |||
Revision as of 17:07, 22 November 2021
Jason Web Token (JWT)
- pronounced as jott
- consists of
<HEADER>.<PAYLOAD>.<SIGNATURE>
- <PAYLOAD> tells who is making the request
- <SIGNATURE> ensure the correctness (not tampered, trusted source)
- <SIGNATURE> = function(<HEADER>,<PAYLOAD>,<SECRET)