c#字符串MD5加密GetMD5Hash

2020-12-13 14:15

阅读:543

标签:blog   http   os   ar   for   sp   div   log   html   

/// 
        /// 把字符转换成MD5
        /// 
        /// 
        /// 
        public static string GetMD5Hash(String str)
        {
                   //把字符串转换成字节数组
                   byte[] buffer = Encoding.Default.GetBytes(str);

                  MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
                   //md5加密
                   byte[] cryptBuffer = md5.ComputeHash(buffer);
                   string s = "";
                   //把每一个字节 0-255,转换成两位16进制数     
                   for (int i = 0; i 

 转自:http://www.nbcoder.net/thread-271-1-1.html

c#字符串MD5加密GetMD5Hash

标签:blog   http   os   ar   for   sp   div   log   html   

原文地址:http://www.cnblogs.com/xiaoshi212/p/4060035.html


评论


亲,登录后才可以留言!