WordPress 密码哈希生成器

为WordPress生成安全密码哈希值

转换 WordPress 密码哈希计算器

为您的 WordPress 用户

Copied!

关于 WordPress 密码哈希

WordPress uses a secure hashing algorithm to store passwords in its database. Since version 3.0, WordPress has used the Portable PHP password hashing framework (PHPass) to create hashes using the Blowfish algorithm (CRYPT_BLOWFISH) when available, falling back to MD5-based hashing if necessary.

WordPress 密码哈希的格式为前缀,表示所使用的哈希算法,后跟成本因子和哈希期间使用的盐。生成的哈希值为 60 个字符,包括算法、成本、盐和哈希密码本身。

Note:This tool generates WordPress-compatible password hashes using JavaScript. For production environments, it's recommended to use WordPress's built-in password hashing functions (e.g., wp_hash_password()) for maximum security and compatibility.

常见用例

  • 在 WordPress
  • 重置 WordPress 数据库中
  • 将用户从外部系统导入 WordPress
  • 开发处理密码
  • 测试 WordPress

详细信息

哈希算法: Blowfish (CRYPT_BLOWFISH)
哈希前缀: $P$ 或 $2y$
成本因子: 10-14 (WordPress default: 12)
盐 长度: 22 个字符
哈希长度: 60 个字符

Related Tools