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

C# MD5加密字符串

时间:2021-01-12 11:08:56      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:compute   code   style   put   hash   byte   ret   coding   class   

        public string GetMD5(string txt)
        {
            System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
            byte[] frmData = System.Text.Encoding.UTF8.GetBytes(txt);
            byte[] targetData = md5.ComputeHash(frmData);
            string str = null;
            for (int i = 0; i < targetData.Length; i++)
            {
                str = str + targetData[i].ToString("x2");
            }
            return str;
        }

 

C# MD5加密字符串

标签:compute   code   style   put   hash   byte   ret   coding   class   

原文地址:https://www.cnblogs.com/PinkMi/p/14258167.html

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