c#获取MD5值
C#里面如何获取MD5值。我现在已经晕了。网上的基本上都是一下没有什么用的。我要标准版的MD5....
C#里面如何获取MD5值。我现在已经晕了。网上的基本上都是一下没有什么用的。我要标准版的MD5.
展开
2个回答
展开全部
using System.Security.Cryptography;
public string GetMd5(string source)
{
HashAlgorithm hashAlgorithm = null;
hashAlgorithm = new MD5CryptoServiceProvider();
byte[] byteValue;
byteValue = Encoding.UTF8.GetBytes(source);
byte[] hashValue;
hashValue = hashAlgorithm.ComputeHash(byteValue);
string Value = null;
int i;
for (i = 0; i <= 15; i++)
{
string bit;
bit = Convert.ToString(hashValue[i], 16);
if (bit.Count() == 1) { bit = "0" + bit; };
Value = Value + bit;
}
return Value;
}
public string GetMd5(string source)
{
HashAlgorithm hashAlgorithm = null;
hashAlgorithm = new MD5CryptoServiceProvider();
byte[] byteValue;
byteValue = Encoding.UTF8.GetBytes(source);
byte[] hashValue;
hashValue = hashAlgorithm.ComputeHash(byteValue);
string Value = null;
int i;
for (i = 0; i <= 15; i++)
{
string bit;
bit = Convert.ToString(hashValue[i], 16);
if (bit.Count() == 1) { bit = "0" + bit; };
Value = Value + bit;
}
return Value;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询