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

C#MD5加密

时间:2015-05-25 22:15:39      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

        public static void Main(string[] args)
        {
            string s = GetMd5("123");
            Console.WriteLine(s);
            Console.ReadKey();

        }
        public static string GetMd5(string str)
        {
            //创建md5对象
            MD5 md = MD5.Create();

            //将字符串转换成字节数组
            byte[] buffer=Encoding.Default.GetBytes(str);
            //开始加密
            byte[] md5st = md.ComputeHash(buffer);

            //返回加密好的数组
            string mdstr = "";
           for (int i = 0; i < md5st.Length; i++)
            {
                mdstr += md5st[i].ToString("x2");
            } 
            return mdstr;
        }

 

C#MD5加密

标签:

原文地址:http://www.cnblogs.com/zywf/p/4528896.html

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