bcrypt Generator - Adaptive Password Hashing

Generate bcrypt hashes - the time-tested adaptive password hashing based on Blowfish cipher.

Input
0 bytes
Salt

0 bytes

Secure Client-Side Computation • 100% Private

Result Output

About

bcrypt is a password hashing function based on the Blowfish cipher, using a salt and adaptive cost factor to resist brute-force attacks. It has been widely used for password hashing since 1999.

Specifications

Output Size N/A
Standard USENIX bcrypt paper
Standard Year 1999

Use Cases

  • Unix/Linux system password storage
  • Web application password hashing
  • PHP password_hash() default
  • Legacy system password upgrades
  • Systems requiring proven track record

Security Notice

bcrypt is limited to 72-byte passwords and truncates null bytes. For new systems, Argon2id is recommended.

Frequently Asked Questions