アプリケーションで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
は、取得する列のインデックスであるパラメータが1つだけあります。