In CodeIgniter, which security practice is recommended for handling passwords?

  • Encrypting passwords with a custom algorithm
  • Storing plain text passwords
  • Using the MD5 hashing algorithm
  • Utilizing the bcrypt hashing algorithm
CodeIgniter recommends utilizing the bcrypt hashing algorithm for password security. Bcrypt is a strong, adaptive hashing algorithm that includes a salt, making it resistant to brute-force and rainbow table attacks. Storing plain text passwords or using weak hashing algorithms is not recommended for secure password management.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *