ตัวสร้างแฮชรหัสผ่าน WordPress

สร้างแฮชรหัสผ่านที่ปลอดภัยสําหรับ WordPress

เครื่องคํานวณ WordPress Password Hash

สร้างแฮชรหัสผ่านที่ปลอดภัยสําหรับผู้ใช้ WordPress ของคุณ

Copied!

เกี่ยวกับ WordPress Password Hashing

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 ที่จัดการรหัสผ่าน
  • การทดสอบฟังก์ชันการแฮชรหัสผ่านใน WordPress

รายละเอียดทางเทคนิค

อัลกอริทึมการแฮช: Blowfish (CRYPT_BLOWFISH)
คํานําหน้าแฮช: $P$ หรือ $2y$
ปัจจัยต้นทุน: 10-14 (WordPress default: 12)
ความยาวเกลือ: 22 อักขระ
ความยาวแฮช: 60 อักขระ

Related Tools