OAuth State + PKCE Generator
Generate cryptographically random values for OAuth 2.0 / OIDC flows — state (CSRF), nonce (ID token replay), code_verifier + code_challenge (PKCE). Web Crypto.
Cryptographically random state, nonce, and PKCE verifier + challenge. All generated via Web Crypto in your browser — never sent anywhere.
statenoncecode_verifier (PKCE)code_challenge (PKCE, S256)What powers the OAuth State + PKCE Generator
state — 32 random bytes base64url
nonce — 32 random bytes base64url
code_verifier — 32 random bytes base64url
code_challenge — SHA-256(verifier) (S256)
All via Web Crypto API
Why the OAuth State + PKCE Generator is different
Browser-native
The OAuth State + PKCE Generator runs entirely in your browser. Input is processed locally — never uploaded, never logged, never cached anywhere outside your device.
No artificial limits
No daily quotas, no character ceilings, no "upgrade for more" walls. Every feature is the complete feature — the same on the first use as the thousandth.
Production-grade quality
Built to the same engineering bar as paid SaaS tools — accurate algorithms, audited logic, responsive design and accessibility-tested interactions.
Common use contexts
- OAuth 2.0 client implementation
- OIDC integration
- PKCE flow setup for SPAs
- Manual auth flow testing
Private and secure
Zero upload
All processing happens in your browser. Input is never transmitted, logged or cached.
Works offline
Once the page loads, the tool runs without an internet connection. No network calls happen during use.
No tracking
No accounts, no cookies for tool state. Only aggregate analytics count visits at the page level.