如何在适合PHP SHA512的C#中重现SHA512哈希?

前端之家收集整理的这篇文章主要介绍了如何在适合PHP SHA512的C#中重现SHA512哈希?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题几乎是不言自明的.我用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();
}
原文链接:https://www.f2er.com/php/134663.html

猜你在找的PHP相关文章