码迷,mamicode.com
首页 > Windows程序 > 详细

C#NET获取CalculateMD5Hash32位

时间:2020-03-04 23:10:14      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:pen   tostring   ash   creat   stringbu   compute   alc   inpu   string   

1         public string CalculateMD5Hash(string input)
2         {
3             MD5 md5 = MD5.Create();
4             byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(input);
5             byte[] hash = md5.ComputeHash(inputBytes);
6             StringBuilder sb = new StringBuilder();
7             for (int i = 0; i < hash.Length; i++) { sb.Append(hash[i].ToString("X2")); }
8             return sb.ToString();
9         }

 

C#NET获取CalculateMD5Hash32位

标签:pen   tostring   ash   creat   stringbu   compute   alc   inpu   string   

原文地址:https://www.cnblogs.com/wz2988/p/12416513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!