为什么我的PHP SHA256哈希值不等于C#SHA256管理哈希

前端之家收集整理的这篇文章主要介绍了为什么我的PHP SHA256哈希值不等于C#SHA256管理哈希前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么这些不一样?

PHP

$hash = hash('sha256',$userData['salt'] . hash('sha256',$password) );

C#

public static string ComputeHash(string plainText,string salt)
    {
        // Convert plain text into a byte array.
        byte[] plainTextBytes = Encoding.UTF8.GetBytes(plainText);
        byte[] saltBytes = Encoding.UTF8.GetBytes(salt);

        SHA256Managed hash = new SHA256Managed();

        // Compute hash value of salt.
        byte[] plainHash = hash.ComputeHash(plainTextBytes);

        byte[] concat = new byte[plainHash.Length + saltBytes.Length];

        System.Buffer.BlockCopy(saltBytes,concat,saltBytes.Length);
        System.Buffer.BlockCopy(plainHash,saltBytes.Length,plainHash.Length);

        byte[] tHashBytes = hash.ComputeHash(concat);

        // Convert result into a base64-encoded string.
        string hashValue = Convert.ToBase64String(tHashBytes);

        // Return the result.
        return hashValue;
    }
C#正在输出一个base64生态编码的字符串,PHP正在输出十六进制数.更好的比较可能是将参数true传递给PHP和base64的hash函数的结尾:
$hash = base64_encode(
           hash('sha256',$password),true )
         );
原文链接:https://www.f2er.com/php/131834.html

猜你在找的PHP相关文章