Explore the World's Best Ideas
Join today and uncover 100+ curated journeys from 50+ topics. Unlock access to our mobile app with extensive features.
JWT stands for JSON Web Token and represents an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with theĀ HMACĀ algorithm) or a public/private key pair usingĀ RSAĀ orĀ ECDSA.
9
122 reads
7
65 reads
In its compact form, JSON Web Tokens consist of three parts separated by dots (.), which are:
Therefore, a JWT typically looks like the following.
aaaaa.bbbbb.ccccc
I'll break down every part in the upcoming ideas.
7
59 reads
The header is the first part of a JWT token and it usually consists of two parts: the type of the token, and the signing algorithm being used. (see picture above - type is "JWT" and the signing algorithm is HMAC SHA256 ).
This JSON is then Base64UrlĀ encoded.
6
42 reads
The payload is the second part of a JWT token and it contains the claims - statements about an entity (usually the user) and additional data. There are three types of claims:Ā
This JSON is then Base64UrlĀ encoded.
6
27 reads
The signature is the third part of a JWT token. In order to create it we have to take the encoded header, the encoded payload, a secret, the algorithm specified in the header, and sign that (see picture).
The signature is used to verify the message wasn't changed along the way, and, in the case of tokens signed with a private key, it can also verify that the sender of the JWT is who it says it is.
6
26 reads
IDEAS CURATED BY
Learn more about computerscience with this collection
The importance of networking in podcasting
How to grow your podcast audience
How to monetize your podcast
Related collections
Similar ideas
5 ideas
What is UTF-8 Encoding? A Guide for Non-Programmers
blog.hubspot.com
10 ideas
What Is a Digital Signature? | Binance Academy
academy.binance.com
7 ideas
What is Web3? The Decentralized Internet of the Future Explained
freecodecamp.org
Read & Learn
20x Faster
without
deepstash
with
deepstash
with
deepstash
Personalized microlearning
ā
100+ Learning Journeys
ā
Access to 200,000+ ideas
ā
Access to the mobile app
ā
Unlimited idea saving
ā
ā
Unlimited history
ā
ā
Unlimited listening to ideas
ā
ā
Downloading & offline access
ā
ā
Supercharge your mind with one idea per day
Enter your email and spend 1 minute every day to learn something new.
I agree to receive email updates