C# MD5加密
2021-02-16 17:17
标签:ide nbsp use utf8 def tostring return str 字符串 C# MD5加密 标签:ide nbsp use utf8 def tostring return str 字符串 原文地址:https://www.cnblogs.com/Cein/p/8406414.html public static string MD5(string encypStr)
{
return MD5(encypStr, "utf-8");
}
/** 获取大写的MD5签名结果 */
public static string MD5(string encypStr, string charset)
{
System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] bs = Encoding.GetEncoding(charset).GetBytes(encypStr);
bs = md5.ComputeHash(bs);
return BytesToHexString(bs);
}
///
上一篇:C#AES加密
下一篇:TensorFlow实现Softmax Regression识别手写数字中"TimeoutError: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主