开发者

Which password hash function should I use?

I am looking for a password hash function that can stay with me for years. Picking the wrong one can be fatal, as it is impossible to upgrade the existing hashes without having the users log in.

It is often suggested to use bcrypt or sha256-crypt from glibc. These use key stretching, but I do not like the fact that I am una开发者_JS百科ble to extend the stretching later on. One should be able to keep up with Moore's law.

Right now, I am considering the simple algorithm from the Wikipedia link, with SHA-256 for the hash function. That one allows me to just keep adding iterations as I see fit.

However, that algorithm is not a standard. It is therefore unlikely that I will ever be able to use the password hash with LDAP, htaccess, and so on.

Is there a better option available?


You should use SHA1 for password hashing. However, more than algorithm, you should also consider adding salt to passwords. Ideally a random salt should be created for each password and stored along with password.

This is to defeat rainbow tables.

Great discussion on this : Non-random salt for password hashes


I may be coming at this from another angle, but if you are saying that you may have users who will not log in for long periods of time then that presents a big risk. The longer you allow a user to stick with the same password, the greater the risk of bruteforce from an attacker who manages to grab your password hash file somehow. Don't rely on security preventing that ever happening...

Hash functions don't go out of date that rapidly, so I would imagine you should be fine reviewing this annually, as hopefully you will have your users change passwords more often than that.

It all depends on your exact requirements, obviously, but have a think about it.

In general bcrypt or sha256 can suit the requirement nicely.

Update: You could think about popping this query across to security.stackexchange.com, as it is a security management question.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜