Authentication & Authorization

JWT

English

Overview

A token format that represents things like authentication information compactly and tamper-evidently.

Details

Short for JSON Web Token, a self-contained token format that's tamper-evident thanks to a signature, used for stateless authentication. It's structured as a header, payload, and signature joined by dots, and since the payload is just Base64-encoded, not encrypted, sensitive data should never be put there in the clear.

More Security terms