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

C# MD5

时间:2017-07-01 23:27:22      阅读:379      评论:0      收藏:0      [点我收藏+]

标签:build   private   hash   creat   uil   str   stringbu   ash   encoding   

            private static string GetMd5String(string msg)
            {
                StringBuilder sb = new StringBuilder();
                using(MD5 md5 = MD5.Create())
                {
                    byte[] bytes = Encoding.UTF8.GetBytes(msg);

                    byte[] md5Byte = md5.ComputeHash(bytes);

                    for (int i = 0; i < md5Byte.Length; i++)
                    {
                        sb.Append(md5Byte[i].ToString("x2"));
                    }
                }
                return sb.ToString();
            }

  



C# MD5

标签:build   private   hash   creat   uil   str   stringbu   ash   encoding   

原文地址:http://www.cnblogs.com/mathyk/p/7103742.html

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