How to store passwords *correctly*?

后端 未结 6 2057
余生分开走
余生分开走 2020-12-07 21:20

An article that I stumbled upon here in SO provided links to other articles which in turn provided links to even more articles etc.

And in the end I was left complet

6条回答
  •  悲哀的现实
    2020-12-07 22:14

    Simply said, use a cryptographically secure hash algorithm and some salt for the passwords, that should be good enough for 99.99% of all use cases. The weak link will be the code that checks the password as well as the password input.

提交回复
热议问题