Tools

8 all / 82+

Audit

Bcrypt Tool

Hash or verify passwords using the Bcrypt algorithm.

What this tool does

Hash or verify passwords using the Bcrypt algorithm.

Common use cases

  • To create a hash, enter the password and click "Generate".
  • To verify, enter the password and the existing hash, then click "Verify".

How to use?

1
1

To create a hash, enter the password and click "Generate".

2
2

To verify, enter the password and the existing hash, then click "Verify".

Frequently Asked Questions

What is Bcrypt used for?

It is the most common hash algorithm for securely storing passwords in databases.

Why does it generate a different hash for the same password every time?

Bcrypt uses a random 'salt' for each hash generation. This increases security by ensuring that the same password looks different in the database, preventing rainbow table attacks. However, the verify function can still correctly identify if the password matches the hash.