Хешуйте пароль за допомогою bcrypt і перевіряйте пароль щодо хешу bcrypt, повністю у вашому браузері.
Як користуватися Bcrypt
Оберіть «Хешувати», щоб створити хеш, або «Перевірити», щоб перевірити хеш.
Введіть пароль, а при перевірці й хеш.
Прочитайте хеш bcrypt або результат відповідності.
A bcrypt tool that hashes a password at a cost you choose, and verifies a password against an existing bcrypt hash. Everything runs locally in your browser, so passwords stay on your device.
Bcrypt is an adaptive password-hashing function designed specifically for storing passwords. Unlike a fast hash such as SHA-256, it is deliberately slow and includes a built-in salt, which is exactly what you want when defending stored passwords.
The cost factor (the rounds) sets how much work each hash takes. Every extra round doubles the computation, so raising the cost makes large-scale brute-force and GPU attacks far slower, while a single login stays fast enough. A value of 10 to 12 is a common choice.
Bcrypt mixes a random salt into every hash, so the same password produces a different hash each time. That defeats precomputed rainbow tables, and verification still works because the salt is stored inside the hash itself.
To check a password, the verify mode reads the salt and cost out of the stored hash, hashes the candidate the same way, and compares, which is why you only need the hash and the password, not the original salt.
Hashing and verifying run entirely in your browser, so nothing is uploaded. Even so, avoid pasting real production passwords on a shared computer.
Поширені запитання
Коефіцієнт складності: кожен додатковий раунд подвоює роботу, потрібну для обчислення хешу, роблячи атаки перебором повільнішими. 10 до 12 поширений вибір.
Bcrypt включає випадкову сіль у кожен хеш, тож вивід різниться навіть для одного пароля. Перевірка все одно працює, бо сіль зберігається всередині хешу.
Хешування виконується повністю у вашому браузері, тож паролі не завантажуються. Усе ж уникайте вставлення справжніх робочих паролів на спільних комп'ютерах.
Вбудувати цей інструмент
Додайте цей інструмент на власний сайт. Скопіюйте фрагмент нижче; він оновлюється автоматично.
<iframe src="https://monu.tools/embed/uk/bcrypt-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>Пов'язані інструменти
Кодуйте текст у Base64 або декодуйте Base64 назад у текст. Підтримка UTF-8 з автоматичним визначенням напряму.
Відсоткове кодування та декодування URL і компонентів URL із підтримкою UTF-8.
Декодуйте JSON Web Token, щоб переглянути його заголовок і корисне навантаження, з читабельним часом завершення та видачі. Працює повністю у вашому браузері; токени ніколи не завантажуються.
Генеруйте хеші SHA-1, SHA-256, SHA-384 та SHA-512 для будь-якого тексту прямо у вашому браузері.