What this tool does
Hash or verify passwords using the Bcrypt algorithm.
Hash or verify passwords using the Bcrypt algorithm.
Hash or verify passwords using the Bcrypt algorithm.
To create a hash, enter the password and click "Generate".
To verify, enter the password and the existing hash, then click "Verify".
It is the most common hash algorithm for securely storing passwords in databases.
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.