๐ JWT Generator
Generate signed JWT tokens for testing. HS256/HS384/HS512. โ ๏ธ For testing only โ never expose real secrets in browser tools.
โ ๏ธ Security note: Signing happens client-side in your browser. Don't paste production secrets here. Use this for development/testing only.
Note: HS384 not natively supported by Web Crypto, falls back to HS256
โ ๏ธ 19/32 โ too short for HS256 in production
๐ Standard JWT Claims
issโ Issuer (who created the token)subโ Subject (who the token is about, usually user ID)audโ Audience (who the token is for)expโ Expiration time (Unix timestamp)iatโ Issued at timenbfโ Not before timejtiโ JWT ID (unique identifier)- ๐ก Add custom claims for app-specific data (role, permissions, etc.)