storing passwords in SQL Server

后端 未结 4 1355
没有蜡笔的小新
没有蜡笔的小新 2020-11-27 15:11

What is the recommended practice for storing user passwords in SQL Server 2008?

I am storing user details for an intranet, and would like to get advice on best way t

4条回答
  •  星月不相逢
    2020-11-27 15:56

    that is generally the way to do it.

    Your application will handle the encrypting (and optionally decrypting), the database will just store the password.

    I recommend using something stronger than the dated defacto - MD5

    Most .net developers seem to like using TDES

提交回复
热议问题