JSON Web Token (JWT) overview
JSON Web Token (JWT) overview
JWT is self-contained and secured compared to the session ID, as it is digitally signed.
JWT consists of the following building blocks:
- Header: This contains the token type and hashing algorithm
- Body: This contains the reserved or custom claims, which serves the user verification details
- Signature: This contains the cryptographic signature made out of the encoded data and private key
Here is a graphical representation of the JWT:

Comments
Post a Comment