gpt4 book ai didi

c# - 如何在 C# 中重现适合 PHP SHA512 的 SHA512 散列?

转载 作者:可可西里 更新时间:2023-11-01 12:45:48 26 4
gpt4 key购买 nike

这个问题几乎是不言自明的。我用 Google 搜索了很多网站、很多方法,尝试了很多编码,但我无法匹配。

我正在尝试匹配字符串“asdasd”。 ( http://www.fileformat.info/tool/hash.htm?text=asdasd )

最佳答案

试试这个

using System.Security.Cryptography

public static string HashPassword(string unhashedPassword)
{
return BitConverter.ToString(new SHA512CryptoServiceProvider().ComputeHash(Encoding.Default.GetBytes(unhashedPassword))).Replace("-", String.Empty).ToUpper();
}

关于c# - 如何在 C# 中重现适合 PHP SHA512 的 SHA512 散列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1419069/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com