Password Generator

Generates a random password using your browser's cryptographically secure random number source. Nothing is uploaded, logged, or stored.

Generated password

Common questions

How random is this, really?

The password is generated using window.crypto.getRandomValues, the same cryptographically secure random number source browsers use for security-sensitive operations — not Math.random, which is not designed to be unpredictable.

Is the generated password sent anywhere?

No. The password is generated and displayed entirely in your browser. It is never transmitted, logged, or stored by this site.

How long should my password be?

Most current guidance recommends at least 12–16 characters with a mix of character types for accounts that support it, and longer where a site allows.