php password encryption MORE secured?
Hi, I've read about md5 hash function and i've used it. Now to protect my database from hacking and stuff... I want to add additional hash function and concatinate it with the other.... just for the sake of adding more security?
$hashed = $md5($pass) '.' $sha1($pass);
somethin like that..not sure though... what can u suggest as a better method? or approach perhaps?
thanks
|