计算“nvarchar”的 SHA1 哈希值使用 T-SQL 的字符串

发布于 2024-10-23 23:32:30 字数 990 浏览 0 评论 0原文

我正在尝试使用 T-SQL 计算 unicode 字符串的 SHA1 哈希值。下面的代码可以很好地处理 ASCII 字符串:

declare @input varchar(50)
set @input = 'some text'
print 'SHA1 Hash: ' + UPPER(master.dbo.fn_varbintohexsubstring(0, HashBytes('SHA1', @input), 1, 0))

但是当我用 declare @input nvarchar(50) 替换第一行代码时,它计算出错误的哈希值。

Calculated hash (nvarchar): BBA91B680CE2685E9465DE24967E425CF055B10F
Calculated hash by a tool : 37AA63C77398D954473262E1A0057C1E632EDA77

如何计算 nvarcharSHA1 哈希值?

[编辑]:

下面的 C# 代码生成与我用于散列的工具相同的散列:

// Computes SHA1 hash of a given string
string ComputeHash(string input)
{
    string result = string.Empty;
    byte[] hash;
    byte[] bytes = Encoding.GetBytes(input);

    using (var sha = SHA1Managed.Create())
        hash = sha.ComputeHash(bytes);

    foreach (var b in hash)
        result += b.ToString("X2");

    return result;
}

I'm trying to calculate SHA1 hash of a unicode string using T-SQL. The below code works fine with ASCII strings:

declare @input varchar(50)
set @input = 'some text'
print 'SHA1 Hash: ' + UPPER(master.dbo.fn_varbintohexsubstring(0, HashBytes('SHA1', @input), 1, 0))

but it calculates wrong hash when I replace first line of code with declare @input nvarchar(50).

Calculated hash (nvarchar): BBA91B680CE2685E9465DE24967E425CF055B10F
Calculated hash by a tool : 37AA63C77398D954473262E1A0057C1E632EDA77

How can I calculate SHA1 hash of a nvarchar ?

[EDIT]:

Below C# code generate same hash as the tool I use for hashing:

// Computes SHA1 hash of a given string
string ComputeHash(string input)
{
    string result = string.Empty;
    byte[] hash;
    byte[] bytes = Encoding.GetBytes(input);

    using (var sha = SHA1Managed.Create())
        hash = sha.ComputeHash(bytes);

    foreach (var b in hash)
        result += b.ToString("X2");

    return result;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

西瓜 2024-10-30 23:32:30

当您将工具返回的哈希值与 SQL Server 返回的哈希值进行比较时,您确定该工具返回的哈希值使用的是 UTF16 或 Unicode 编码吗?...SHA1(以及其他编码)格式)取决于数据类型,因此当作为输入给出时它应该返回不同的值。看一下 链接可获取更详细的说明。

Are you sure that the hash returned by your tool is using UTF16 or Unicode encoding when you compare it with the one returned by SQL Server?...SHA1 (and other encoding formats) depends on the data type, so it should return different values when given as an input. Take a look at this link for a more detailed explanation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文