What algorithm or hashing method is used now for WordPress? I wrote software that I sell, that uses the WordPress MySql/Users table for login and since I've upgraded my WordPress site the hash is different, no longer MD5.
What algorithm or hashing method is used now for WordPress? I wrote software that I sell, that uses the WordPress MySql/Users table for login and since I've upgraded my WordPress site the hash is different, no longer MD5.
WordPress still uses MD5 for passwords.
This is the hash I get now.
$P$BFunc6z.neGNhHhluLFa/FJHgei9NT.
It should be/used to be
e4c9365b2f17848c7cd25c7f1e10fc68
Anyone have any idea on this?
WordPress uses phpass (class-phpass.php) to encrypt the passwords in the DB.
http://codex.wordpress.org/Function_Reference/wp_hash_password
http://www.openwall.com/phpass/
This topic has been closed to new replies.