Wednesday, July 18, 2018

Introduction To JWT

JWT(JSON Web Token) is open standard that allows transmitting data between parties as a JSON. It is digitally signed so the information are trusted and verified. It can be signed using public / private key(ECDSA or RAS)or secret with HMAC algorithm. It is very popular in web development.

source https://www.c-sharpcorner.com/article/introduction-to-jwt/

No comments:

Post a Comment