php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "password hashing"

What potential pitfalls should be avoided when implementing password hashing in PHP?

One potential pitfall to avoid when implementing password hashing in PHP is using outdated or insecure hashing algorithms like MD5 or SHA1. It is reco...

How can MD5 be effectively used for password hashing in PHP applications?

Using MD5 for password hashing in PHP applications is not recommended due to its vulnerabilities to brute force attacks and collisions. Instead, it is...

How can the use of salts in password hashing impact the security of a PHP login system?

Using salts in password hashing can significantly improve the security of a PHP login system by adding random data to each password before hashing it....

How can PHP developers ensure consistent hashing results when using md5() for password encryption, especially when encountering unexpected changes in hash values?

When using md5() for password encryption in PHP, developers can ensure consistent hashing results by salting the passwords before hashing them. This i...

What are the potential pitfalls of using md5 for password hashing in PHP, and what alternative methods are recommended?

Using md5 for password hashing in PHP is not recommended due to its vulnerability to brute force attacks and its fast computation speed. It is conside...

Showing 36 to 40 of 3970 results

‹ 1 2 ... 5 6 7 8 9 10 11 ... 793 794 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.