wordpress 数据库中的密码存储在 table wp_users

Password store in wordpress database in table wp_users

wordpress 数据库中的 table wp_users 中的密码是如何存储的?我想知道用于在列 user_pass

中生成密码值的算法是什么

WordPress 使用 php's crypt method to hash the password. Here's the method used to hash the password in Wordpress's source code: https://github.com/WordPress/WordPress/blob/2651ff3ae805321432bc6d9eac3d62269c937077/wp-includes/class-phpass.php#L236

Wordpress generates a salt string bash 在同一个 class.

中对这个特定方法进行哈希处理