Генератор паролів
Choose length and character classes. The generator draws from the browser’s cryptographic random source when available.
Ця сторінка є перекладом англійського оригіналу. Рушій розрахунку той самий.
Коротка відповідь
It builds a string from the selected alphabet using secure randomness in the client.
Приклад: 16 characters with upper, lower, digits and symbols is a common default; longer is stronger if you can store it.
Обчислення відповідають формулі на цій сторінці; округлення та одиниці можуть змінити останню цифру. Вважайте результат навчальною оцінкою.
* Оцінка. Фактичні суми можуть відрізнятися залежно від припущень.
Що робить цей калькулятор
It builds a string from the selected alphabet using secure randomness in the client.
Для кого це
Anyone creating a new password who wants the generation to stay on-device.
Як працює розрахунок
A cryptographically strong RNG picks indices into the allowed character set until the requested length is reached.
Формула
Uniform draws from the selected alphabet. No password is derived from your name or the page URL.
Припущення
- The browser provides crypto.getRandomValues or an equivalent.
- You store the result in a password manager.
Обмеження
- Does not check whether a password has appeared in a public breach.
- A short alphabet reduces strength even at long lengths.
Як користуватися інструментом
- 1Set the length.
- 2Toggle character classes.
- 3Copy the result into a password manager — not into email.
Поширені запитання
- 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.