Paroļu ģenerators
Choose length and character classes. The generator draws from the browser’s cryptographic random source when available.
Šī lapa tulko angļu oriģinālu. Aprēķinu dzinējs ir tas pats.
Īsa atbilde
It builds a string from the selected alphabet using secure randomness in the client.
Piemērs: 16 characters with upper, lower, digits and symbols is a common default; longer is stronger if you can store it.
Aprēķini atbilst šīs lapas formulai; noapaļošana un mērvienības var mainīt pēdējo ciparu. Uzskatiet rezultātu par izglītojošu novērtējumu.
* Novērtējums. Faktiskās summas var atšķirties atkarībā no pieņēmumiem.
Ko dara šis kalkulators
It builds a string from the selected alphabet using secure randomness in the client.
Kam tas paredzēts
Anyone creating a new password who wants the generation to stay on-device.
Kā darbojas aprēķins
A cryptographically strong RNG picks indices into the allowed character set until the requested length is reached.
Formula
Uniform draws from the selected alphabet. No password is derived from your name or the page URL.
Pieņēmumi
- The browser provides crypto.getRandomValues or an equivalent.
- You store the result in a password manager.
Ierobežojumi
- Does not check whether a password has appeared in a public breach.
- A short alphabet reduces strength even at long lengths.
Kā lietot rīku
- 1Set the length.
- 2Toggle character classes.
- 3Copy the result into a password manager — not into email.
BUJ
- Do you store the password?
- Generation is client-side. We do not need the password to render the page.
- Is longer always better?
- Length helps, but a tiny character set or a reused password still fails.