Private browser-local utility

Password Generator

Create a random password from selected character types using the browser’s cryptographic random-number generator.

Character types

Enter values to begin.

How it works

Random bytes come from crypto.getRandomValues(). Rejection sampling removes modulo bias when selecting characters, one character is guaranteed from every selected class, and a cryptographic Fisher–Yates shuffle removes predictable class placement.

Limits and assumptions

Lengths from 8 to 128 characters are supported. A generated password is shown only in this tab and disappears on reset or refresh. Copying uses your browser clipboard, whose behavior is controlled by your device and browser.

Related tools