Password Generator
Passwords are made with crypto.getRandomValues, locally. Nothing is generated on a server, logged, or stored.
20
Each password is drawn from your selected character sets using the browser's cryptographically secure random generator (crypto.getRandomValues) with rejection sampling, so there is no modulo bias.
The entropy estimate is length × log₂(pool size) — a measure of how many guesses an attacker needs. Aim for 80+ bits for anything important. Nothing is uploaded; refresh and it's gone.