.env · security
Bcrypt Oluşturucu — Şifreleri çevrimiçi hashle ve doğrula
Tarayıcında bcrypt ile bir şifreyi hashle. Maliyet faktörü seç, mevcut hash'i doğrula, sonucu kopyala. Hiçbir şey sunucuya gönderilmez.
Be the first to rate
Password / plaintext
Cost factor (rounds) — higher = slower = more secure
Rounds 10–12 are standard. Each +1 doubles hashing time.
CLI equivalents
Node.js (bcryptjs)
node -e "const b=require('bcryptjs');
console.log(b.hashSync('pw',12))"Python (bcrypt)
python3 -c "import bcrypt;
print(bcrypt.hashpw(b'pw',bcrypt.gensalt(12)))"Full tool page:/bcrypt-generator