Generate random passwords locally using the browser's crypto API.
Each character is sampled uniformly from the selected set using a cryptographically secure RNG.
len × log2(setSize) bits. For example, 16 chars from 62‑symbol set ≈ 95 bits.All generation is local; nothing is sent anywhere.
No guarantee of uniqueness; generate multiple and pick one. Avoid only symbols/digits for memorability.
Looking for broader guides and best practices? Visit the ToolsAreUs Blog for indexes (like the full tool list) and articles (e.g. secure password generation).