Password Generator

Secure, random passwords generated locally in your browser.

Passwords are generated locally using the Web Crypto API. Nothing is sent to our servers.

Frequently asked questions

Are these passwords secure?

Yes. This tool uses window.crypto.getRandomValues(), which is a cryptographically strong random number generator (CSPRNG) built into modern browsers. It is much more secure than standard Math.random().

Is the password sent to your server?

No. The generation happens entirely within your browser's memory. We never see your password, and it is never transmitted over the network.

How long should my password be?

For modern security, we recommend at least 16 characters. While 12 is often considered the minimum, longer passwords significantly increase the time required for a brute-force attack to succeed.