C# MD5加密字符串

2021-03-01 21:25

阅读:716

标签: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 )
            {
                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


评论


亲,登录后才可以留言!