Json webtoken or jwt Format and encode , decode
1st of all Thanks to jwt.io team and you can buy a coffee for them...
One of the secure token jwt.. most of the trusted organizations uses jwt...
JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.
JWT.IO allows you to decode, verify and generate JWT.
What is JWT?
JSON Web Token is a proposed Internet standard for creating data with optional signature and/or optional encryption whose payload holds JSON that asserts some number of claims. The tokens are signed either using a private secret or a public/private key.
What are the Algorithms Available?
There are 12 algorithms currently available..
YOUTUBE TUTORIAL EXAMPLE
Let's see what are they.....
Debugger
Decoded
HEADER:
PAYLOAD:
VERIFY SIGNATURE
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
Another Algorithm updated soon.....
Comments
Post a Comment