What type of hash does Wordpress use?
Here is an example of a Wordpress hash:
$P$Bp.ZDNMM98mGNxCtHSkc1DqdRPXeoR.
What type of hash does Wordpress use?
Here is an example of a Wordpress hash:
$P$Bp.ZDNMM98mGNxCtHSkc1DqdRPXeoR.
MD5 worked for me changing my database manually: http://codex.wordpress.org/Resetting_Your_Password
$hash_type$salt$password
If the hash does not use a salt, then there is no $ sign for that. The actual hash in your case is after the 2nd $
The reason for this is so you can have many types of hashes with different salts and feed that string into a function that knows how to match it with some other value.
It depends at least on the version of PHP that is used. wp-includes/class-phpass.php
contains all the answers.