这个问题几乎是不言自明的.我用Google搜索了许多网站,很多方法,尝试了很多编码,但我无法让它匹配.
我正在尝试使字符串“asdasd”匹配. (http://www.fileformat.info/tool/hash.htm?text=asdasd)
试试这个
原文链接:https://www.f2er.com/php/134663.htmlusing System.Security.Cryptography public static string HashPassword(string unhashedPassword) { return BitConverter.ToString(new SHA512CryptoServiceProvider().ComputeHash(Encoding.Default.GetBytes(unhashedPassword))).Replace("-",String.Empty).ToUpper(); }