Secure password storage

前端 未结 7 863
别那么骄傲
别那么骄傲 2021-01-20 09:22

I\'m developing a web service where users must login. I will store user data in an SQL database and input/output via PHP. But I don\'t want to store it openly. How do I encr

7条回答
  •  面向向阳花
    2021-01-20 09:41

    The easiest way to get your password storage scheme secure is by using a standard library.

    Because security tends to be a lot more complicated and with more invisible screw up possibilities than most programmers could tackle alone, using a standard library is almost always easiest and most secure (if not the only) available option.

    See this answer for more info

提交回复
热议问题