Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 416 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 416 Bytes

Implementing JWT Authentication in Web API Using .Net.

JWT stands for JSON Web Token digitally signed using a secret key by a token provider. It helps the resource server to verify the token data using the same secret key.

JWT is represented as a combination of three base64url encoded parts concatenated with period ('.') characters and comprises the following three sections:

  1. Header
  2. Payload
  3. Signature