我在我的应用程序中使用 PBKDF2 来存储用户密码。在我的用户表中,我有一个Salt
和Password
列,它是这样确定的:
// Hash the users password using PBKDF2
var DeriveBytes = new Rfc2898DeriveBytes(_Password, 20);
byte[] _Salt = DeriveBytes.Salt;
byte[] _Key = DeriveBytes.GetBytes(20); // _Key is put into the Password column
在我的登录页面上,我需要检索这个盐和密码。因为它们是 byte[] 数组,所以我将它们作为varbinary(MAX)
. 现在我需要检索它们以与用户输入的密码进行比较。我将如何使用SqlDataReader
?目前我有这个:
cn.Open();
SqlCommand Command = new SqlCommand("SELECT Salt, Password FROM Users WHERE Email = @Email", cn);
Command.Parameters.Add("@Email", SqlDbType.NVarChar).Value = _Email;
SqlDataReader Reader = Command.ExecuteReader(CommandBehavior.CloseConnection);
Reader.Read();
if (Reader.HasRows)
{
// This user exists, check their password with the one entered
byte[] _Salt = Reader.GetBytes(0, 0, _Salt, 0, _Salt.Length);
}
else
{
// No user with this email exists
Feedback.Text = "No user with this email exists, check for typos or register";
}
但我知道这是错误的事实。其他方法Reader
只有一个参数是要检索的列的索引。