diff --git a/README.md b/README.md index a032c80..cd88199 100644 --- a/README.md +++ b/README.md @@ -26,3 +26,14 @@ - [JWS Verification](#jwsverification) - [Error Codes & Exceptions](#errorcodeexception) - [Additional Header Data](#additionalheaderdata) +- [Things for improvement](#improvement) + + +## What is it ? +For the uninitiated, JSON Web Token(JWT) is a JSON based standard (RFC-7519) for creating assertions or access tokens that consists of some claims (encoded within the assertion). +This assertion can be used in some kind of bearer authentication mechanism that the server will provide to clients, and the clients can make use of the provided assertion for accessing resources. + +Few good resources on this material which I found useful are: + - Anatomy of JWT + - Learn JWT + - RFC 7519