InterviewSolution
Saved Bookmarks
| 1. |
What is the most used method for hashing passwords in PHP? |
|
Answer» The crypt() FUNCTION is used for this functionality as it provides a large number of hashing algorithms that can be used. These algorithms include SHA1, sha256, or md5 which are DESIGNED to be very FAST and efficient. |
|