PHP password_hash online generator 🔑

Generate password hashes using the PHP password_hash() function from your browser. A quick and simple tool that can be useful when you quickly need to generate a password hash for PHP to manually insert to a database, or similar.

The default cost of 10 is used. Passwords and generated hashes are not stored by this service.

password_hash(,)
= null

Important about PHP password_hash and password hashing

The password_hash function generates encrypted password hashes using one-way hashing algorithms. Information about the algorithm, cost and salt used is contained as part of the returned hash.

Passwords should be verified using the password_verify function, which uses constant time and is timing attack safe.

You can extract information about a given hash using the password_get_info function, which return an array of information containing the algorithm and options used to generate the hash.

❤️ Kindly sponsored by Upnode