DevToolBoxGRATIS
Blog

Bcrypt Hash Generator

Genereer bcrypt-wachtwoordhashes met configureerbare kost. Gratis, geen registratie vereist.

𝕏 Twitterin LinkedIn

Beoordeel deze tool

3.9 / 5 Β· 219 beoordelingen

Blijf op de hoogte

Ontvang wekelijkse dev-tips en nieuwe tools.

Geen spam. Altijd opzegbaar.

Enjoy these free tools?

β˜•Buy Me a Coffee

How to Use

  1. Enter the password you want to hash
  2. Set the cost factor (default: 10)
  3. Click Generate to create the bcrypt hash
  4. Copy the hash for use in your application's database

Common Use Cases

  • Generating password hashes for user registration systems
  • Verifying stored passwords during authentication
  • Testing bcrypt implementations in your application
  • Comparing different cost factors for performance tuning

Frequently Asked Questions

What cost factor should I use for bcrypt?
A cost of 10-12 is recommended for most web applications, balancing security and performance. Cost 10 takes about 100ms per hash. Each increment doubles the time.
Is bcrypt better than SHA-256 for passwords?
Yes. SHA-256 is designed to be fast, which makes it vulnerable to brute-force attacks. Bcrypt is intentionally slow and includes a built-in salt, making it much more secure for password storage.
Can I verify a password against a bcrypt hash?
Yes. Enter the password and the bcrypt hash, and the tool will tell you if they match. The salt is embedded in the hash, so no separate salt is needed.