Bir parolayı bcrypt ile hashleyin ve bir parolayı bcrypt hash'ine karşı doğrulayın, tamamen tarayıcınızda.
Bcrypt nasıl kullanılır
Hash oluşturmak için Hashle'yi veya mevcut birini kontrol etmek için Doğrula'yı seçin.
Bir parola ve doğrulama için hash girin.
Bcrypt hash'ini veya eşleşme sonucunu okuyun.
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.
Sıkça sorulan sorular
Maliyet faktörü: her ek tur hash'i hesaplamak için gereken işi ikiye katlar, kaba kuvvet saldırılarını yavaşlatır. 10 ile 12 yaygın bir tercihtir.
Bcrypt her hash'e rastgele bir tuz ekler, bu nedenle aynı parola için bile çıktı farklıdır. Tuz hash'in içinde saklandığı için doğrulama yine de çalışır.
Hashleme tamamen tarayıcınızda çalışır, bu nedenle parolalar yüklenmez. Yine de paylaşılan bilgisayarlarda gerçek üretim parolalarını yapıştırmaktan kaçının.
Bu aracı göm
Bu aracı kendi web sitenize ekleyin. Aşağıdaki kod parçacığını kopyalayın; otomatik olarak güncel kalır.
<iframe src="https://monu.tools/embed/tr/bcrypt-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>İlgili araçlar
Metni Base64'e kodlayın veya Base64'ü tekrar metne çözün. Otomatik yön algılamayla UTF-8 güvenli.
URL'leri ve URL bileşenlerini yüzde kodlayın ve çözün, UTF-8 güvenli.
Bir JSON Web Token'ı çözerek başlığını ve yükünü, insan tarafından okunabilir son kullanma ve verme zamanlarıyla inceleyin. Tamamen tarayıcınızda çalışır; jeton asla yüklenmez.
Herhangi bir metnin SHA-1, SHA-256, SHA-384 ve SHA-512 hash'lerini doğrudan tarayıcınızda oluşturun.