c# - 使用 salt 保护密码散列,但如何将其存储在本地 cookie 中呢?

标签 c# asp.net passwords cryptography

我最近阅读了一篇有趣的文章,内容是关于使用“salt”安全地散列用户密码。 (这是 original article ,不幸的是,它在这篇文章发布时似乎已关闭,所以 here's 是缓存版本。)

我完全同意这个概念,除了我似乎无法找到一种方法将用户登录信息安全地存储在本地 cookie(或 session )中,因为 salt + PBKDF2 哈希组合每次都是随机完成的。为了更好地理解我的意思,让我从 the article 复制 C# 代码:

using System;
using System.Text;
using System.Security.Cryptography;

namespace PasswordHash
{
    /// <summary>
    /// Salted password hashing with PBKDF2-SHA1.
    /// Author: havoc AT defuse.ca
    /// www: http://crackstation.net/hashing-security.htm
    /// Compatibility: .NET 3.0 and later.
    /// </summary>
    class PasswordHash
    {
        // The following constants may be changed without breaking existing hashes.
        public const int SALT_BYTES = 24;
        public const int HASH_BYTES = 24;
        public const int PBKDF2_ITERATIONS = 1000;

        public const int ITERATION_INDEX = 0;
        public const int SALT_INDEX = 1;
        public const int PBKDF2_INDEX = 2;

        /// <summary>
        /// Creates a salted PBKDF2 hash of the password.
        /// </summary>
        /// <param name="password">The password to hash.</param>
        /// <returns>The hash of the password.</returns>
        public static string CreateHash(string password)
        {
            // Generate a random salt
            RNGCryptoServiceProvider csprng = new RNGCryptoServiceProvider();
            byte[] salt = new byte[SALT_BYTES];
            csprng.GetBytes(salt);

            // Hash the password and encode the parameters
            byte[] hash = PBKDF2(password, salt, PBKDF2_ITERATIONS, HASH_BYTES);
            return PBKDF2_ITERATIONS + ":" +
                Convert.ToBase64String(salt) + ":" +
                Convert.ToBase64String(hash);
        }

        /// <summary>
        /// Validates a password given a hash of the correct one.
        /// </summary>
        /// <param name="password">The password to check.</param>
        /// <param name="goodHash">A hash of the correct password.</param>
        /// <returns>True if the password is correct. False otherwise.</returns>
        public static bool ValidatePassword(string password, string goodHash)
        {
            // Extract the parameters from the hash
            char[] delimiter = { ':' };
            string[] split = goodHash.Split(delimiter);
            int iterations = Int32.Parse(split[ITERATION_INDEX]);
            byte[] salt = Convert.FromBase64String(split[SALT_INDEX]);
            byte[] hash = Convert.FromBase64String(split[PBKDF2_INDEX]);

            byte[] testHash = PBKDF2(password, salt, iterations, hash.Length);
            return SlowEquals(hash, testHash);
        }

        /// <summary>
        /// Compares two byte arrays in length-constant time. This comparison
        /// method is used so that password hashes cannot be extracted from
        /// on-line systems using a timing attack and then attacked off-line.
        /// </summary>
        /// <param name="a">The first byte array.</param>
        /// <param name="b">The second byte array.</param>
        /// <returns>True if both byte arrays are equal. False otherwise.</returns>
        private static bool SlowEquals(byte[] a, byte[] b)
        {
            uint diff = (uint)a.Length ^ (uint)b.Length;
            for (int i = 0; i < a.Length && i < b.Length; i++)
                diff |= (uint)(a[i] ^ b[i]);
            return diff == 0;
        }

        /// <summary>
        /// Computes the PBKDF2-SHA1 hash of a password.
        /// </summary>
        /// <param name="password">The password to hash.</param>
        /// <param name="salt">The salt.</param>
        /// <param name="iterations">The PBKDF2 iteration count.</param>
        /// <param name="outputBytes">The length of the hash to generate, in bytes.</param>
        /// <returns>A hash of the password.</returns>
        private static byte[] PBKDF2(string password, byte[] salt, int iterations, int outputBytes)
        {
            Rfc2898DeriveBytes pbkdf2 = new Rfc2898DeriveBytes(password, salt);
            pbkdf2.IterationCount = iterations;
            return pbkdf2.GetBytes(outputBytes);
        }
    }
}

如您所见,验证密码的唯一方法是使用纯文本密码调用 ValidatePassword。在我之前的普通 SHA1 实现中,为了将用户登录存储在本地浏览器中,我将该 SHA1 值放入 cookie 中,并将其与存储在服务器数据库中的每个页面的值进行比较。但是,您如何使用这种“安全”方法来做同样的事情呢?

有什么想法吗?

最佳答案

您不想在 cookie 中存储散列密码,因为这与将密码本身存储在 cookie 中是一样的。如果哈希是您登录所需的全部,那么它就是密码。您想要使用随机盐对用户密码进行哈希处理的原因不是为了保护登录过程,而是为了保护您的密码表。如果攻击者窃取了您的密码表,并且每个密码都没有用唯一的盐进行哈希处理,那么他/她将很容易找出许多密码。始终使用唯一的盐对用户密码进行哈希处理。可以将此盐与散列密码一起存储。如果您想要一种安全的方式来使用散列来根据 cookie 中的数据对您的用户进行身份验证,您将需要朝着临时凭证或 session 的方向前进。我能想到的最简单的是如下所示:

  1. 当您的用户使用他的密码登录时,创建一个“ session ”。分配一个值来唯一标识此 session ,存储 session 创建的时间(精确到毫秒),并创建一个随机值作为盐。

  2. 用盐散列 session 的 ID。将此哈希值和 session ID 保存在用户的 cookie 中。

  3. 每次请求页面时,再次执行散列并将其与存储在用户 cookie 中的值进行比较。如果值匹配并且自 session 创建以来未经过太多时间,则您的用户可以查看该页面。否则让他们使用密码再次登录。

关于c# - 使用 salt 保护密码散列,但如何将其存储在本地 cookie 中呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14188325/

相关文章:

c# - 网络场应用程序中使用的 session 配置选择

c# - GridView 中的数据绑定(bind)表达式

mysql - 在 MySQL 中存储散列密码

c - 使用带有星号字符的 c 在控制台应用程序中获取密码

c# - 如何从 C# 中的数据集或数据表导出 Excel?

c# - 在 SQL Server Compact 3.5 上使用 CTE

c# - 从 C# 中的 2 个字节的最后 12 位获取整数

asp.net 使用管理员帐户运行程序

asp.net - 对 jQuery 没有影响

jquery - ASP.NET MVC 密码验证器不会警告客户端的某些强制要求?