标签:service enc byte md5加密 ice encoding bit odi def
using System.Security.Cryptography;
public string GetStrMd5(string ConvertString)
{
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
string t2 = BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(ConvertString)));
t2 = t2.Replace("-", "");
return t2;
}
标签:service enc byte md5加密 ice encoding bit odi def
原文地址:https://www.cnblogs.com/yyx999/p/13231273.html