About 1,450,000 results
Open links in new tab
  1. mysql - What data type to use for hashed password field and …

    Oct 29, 2008 · For passwords, use a key-strengthening hash algorithm like Bcrypt or Argon2i. For example, in PHP, use the password_hash () function, which uses Bcrypt by default. The result …

  2. Best practice for storing usernames & password in MySQL Databases

    May 1, 2012 · For the password hash use PBKDF2 it's NIST approved. You should use a random non-secret salt for each password and nontrivial (over 1000) iteration count. For the username …

  3. MySQL Password Storage: Choosing the Right Data Type and …

    Feb 18, 2025 · In MySQL, the best data type for storing hashed passwords is VARCHAR with a sufficient length to accommodate the chosen hashing algorithm. Typically produces a 60 …

  4. What is the correct datatype for storing hashed passwords in mysql?

    Feb 21, 2010 · I plan to hash passwords on my server using SHA512 before inserting them into my database. What datatype should I use for the password column?

  5. Data Type for Hashed Password Field in MySQL - Online …

    Learn the best data type to use for storing hashed password fields in MySQL, ensuring security and efficiency.

  6. How to Store Password in MySQL Database - Delft Stack

    Feb 15, 2024 · Use the PASSWORD Function to Store Passwords in MySQL. The password function generates a hashed password using a plain-text password string. The password …

  7. MySQL Password Security: Choosing the Right Column Type for …

    Never store plain-text passwords in your database. Use a strong hashing algorithm like Bcrypt. Regularly update your hashing algorithm and cost factor to improve security. The cost factor …

  8. MySQL :: MySQL 5.7 Reference Manual :: 6.1.2.4 Password Hashing in MySQL

    The client can do this by using the PASSWORD() function to generate a password hash, or by using a password-generating statement (CREATE USER, GRANT, or SET PASSWORD). In …

  9. What's the Optimal SQL Data Type for Storing Hashed Passwords?-Mysql

    Dec 14, 2024 · When designing a database schema, it's important to consider the appropriate data type for storing hashed passwords. Since password hashing introduces variability in …

  10. MySQL: Choose Data type and length of the Secure Hash …

    Jul 27, 2016 · We can use CHAR or BINARY data type to store encrypted password. We should choose hashing algorithm base on our requirements because there are different version …

Refresh