php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "hashing algorithm"

What is the recommended method for securely hashing passwords in PHP and why is using md5 not recommended?

The recommended method for securely hashing passwords in PHP is to use the password_hash() function with the PASSWORD_DEFAULT algorithm. This function...

What are the drawbacks of using md5() for password hashing in PHP?

Using md5() for password hashing in PHP is not secure because it is a fast hashing algorithm that can be easily cracked using modern hardware. It is v...

What potential security risks are associated with using MD5 hashing for passwords in PHP?

Using MD5 hashing for passwords in PHP poses a security risk because MD5 is considered a weak hashing algorithm that can be easily cracked using moder...

In what scenarios does using md5 hashing for passwords in PHP pose potential security risks?

Using md5 hashing for passwords in PHP poses potential security risks because it is considered a weak hashing algorithm that can be easily cracked usi...

What are the advantages of using password_hash over MCrypt for password hashing in PHP?

Using password_hash over MCrypt for password hashing in PHP is advantageous because password_hash is a built-in function specifically designed for sec...

Showing 31 to 35 of 2730 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 545 546 ›
PHP.ORG

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

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.