Bcrypt Generator

Generate bcrypt password hashes with configurable salt rounds. Includes password verification.

Generate Hash

10

Higher rounds = more secure but slower. 10-12 is recommended for most use cases.

Verify Password

Compare a password against a bcrypt hash to verify if they match.

About Bcrypt

Bcrypt is a password hashing function designed to be slow and resistant to brute-force attacks.

  • Salt rounds determine the computational cost (2^rounds iterations)
  • Auto-generated salt ensures each hash is unique
  • Adaptive - can increase rounds as hardware improves

Recommended: Use 10-12 rounds for web applications. Higher values provide better security but increase server load.