Bcrypt Hash Generator

Generate secure bcrypt password hashes and verify existing hashes

Higher = more secure but slower (10-12 is recommended)

Processing...
Password matches the hash!
Password does not match the hash.

About Bcrypt

Bcrypt is a password hashing function designed to be secure and resistant to brute-force attacks. It incorporates:

  • Salt: Random data added to prevent rainbow table attacks
  • Cost factor: Adjustable work factor to slow down hashing as hardware improves
  • Built-in resistance: Against many common attack vectors

The cost factor (4-16) determines how many iterations are used (2^cost). Higher values are more secure but slower.