Password hash is an incredibly useful tool to generate a hash for a password using the bcrypt algorithm.
Bcrypt is an open source password hashing algorithm that was created by the OpenBSD project.
It is the same algorithm used by the PHP password_hash function
By hashing the password and not storing it as plain text, you are guaranteed that would not be possible to recover the password in case of a security breach.
Milan lesichkov
05-JUL-2017