TIL a JWT decoder and how it works
POSTED ON:
JWT (JSON Web Tokens) are essentially just JSON objects that are hashed.
This site can decode it, while also teaching you about it.
But to explain it some more:
-
You're given a hash.
-
Inside the hash is a header (to explain the algorithm, and the type)
-
Also included is the payload.
-
There is also a secret handshake code.
-
Put all that together, and you got a pretty neat way to send secure tokens back and forth.
Related TILs
Tagged: security