扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
<P><b>Web中:</b></P>
<P>using System.Web.Security;</P>
<P>public string md5(string baseString)
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(baseString,"MD5");
}</P>
<P><b>应用程序中:</b></P>
<P>using System.Security.Cryptography; </P>
<P>public static string GetMD5(Stream stream)
{
const string HEX_TABLE = "0123456789ABCDEF";
MD5 md5 = new MD5CryptoServiceProvider();
//Calculate MD5 Checksum
byte[]data = md5.ComputeHash(stream);
//convert to string
StringBuilder sb=new StringBuilder();
sb.Length =data.Length *2;
for(int i=0;i<data.Length ;i++)
{
sb[i*2]=HEX_TABLE[data[i]>>4];
sb[i*2+1]=HEX_TABLE[data[i] & 0xF];
}
return sb.ToString();
}
public static string GetMD5(string s)
{
byte[] data=ASCIIEncoding.ASCII.GetBytes(s);
MemoryStream stream=new MemoryStream(data);
//stream.Write(data,0,data.Length);
return GetMD5(stream);
}
</P>
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者