Jump to content

"Best" hash to use?


The14thGOD

Recommended Posts

I've come back to start digging into security for PHP and I was reading up on salt methods etc when I noticed there were lots of mixed thoughts on which hash to use.

 

I eventually came to: http://www.php.net/manual/en/function.hash.php#89574

 

I know it kind of depends on the site but which is generally the most secure?

 

Is/are md5/sha1 basically outdated?

 

Thanks for any and all help clearing this up!

 

Justin

Link to comment
https://forums.phpfreaks.com/topic/155884-best-hash-to-use/
Share on other sites

Most people like myself use md5 but I personally use md5 twice like this:

 

md5(md5())

 

Thus increasing chances for collision.

 

The14thGOD: It really depends on what you're using these hashes for. Well salted md5 will still require a lot of resources to find a collision. On the other hand md5 should not be used any longer for 'signing' the contents of the file. It has been demonstrated that you can falsify such signatures in relatively short time.

Link to comment
https://forums.phpfreaks.com/topic/155884-best-hash-to-use/#findComment-820533
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.