Best hash algorithm to use in PHP/MYSQL

mysql, php

Solution

I would use the php's `crypt()` function because there will not be anyway for the password to be decrypted. When I need to check the newly entered password I just have to encrypt that one and compare the two results

Problem

Which is the best recommended algorithm to use for encrypting passwords in php/mysql

Original source

Related problems