Password Generator

Make strong passwords and passphrases from your browser’s own randomness, and check how strong a password is.

What goes in

Drawing bytes from your browser’s random source…

Drawn here, in your browser, from the bytes crypto.getRandomValues handed over. When a byte would make one character likelier than another it is thrown away and a fresh one drawn in its place, so no character in the pool has an edge over the rest — that is what drawing without modulo bias means.

More in the yard