JWT Token Generator

Create JSON Web Tokens with HS256, HS384, and HS512 algorithms

Signing Algorithm

Header

{ "alg": "HS256", "typ": "JWT" }

Payload

{ "sub": "1234567890", "name": "John Doe", "iat": 1516239022, "exp": 1516242622 }

Generated Token

About JWT Token Generation

This generator creates HMAC-SHA (HS256, HS384, HS512) signed JSON Web Tokens.

The JWT consists of three parts: a header (algorithm, token type), a payload (claims), and a signature for verification.

All processing is done in your browser - your tokens and keys never leave your device.

Need to decode a JWT token?