PHP password_hash online generator
Generate password hashes using PHP's password_hash() function from your browser. Maybe useful if you quickly need a password hash to manually insert to a database? The default cost of 10 is used. Passwords and generated hashes are not stored by this service.
null
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.
Hosted by Upnode