码迷,mamicode.com
首页 > 其他好文 > 详细

MD5 加密的两种方法

时间:2017-08-17 12:50:08      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:file   put   md5   ring   rand   cep   and   .text   log   

System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
            Random ra = new Random();
            var rr= ra.Next(1,100000);
            byte[] test = System.Text.Encoding.UTF8.GetBytes(rr.ToString());
            Console.WriteLine(rr);
            byte[] output = md5.ComputeHash(test);

            Console.WriteLine("md5-1:" + BitConverter.ToString(output).Replace("-",""));
            Console.WriteLine("md5-2:" + FormsAuthentication.HashPasswordForStoringInConfigFile(rr.ToString(), "MD5"));

 

原文链接:http://www.cnblogs.com/william-lin/p/4663488.html

MD5 加密的两种方法

标签:file   put   md5   ring   rand   cep   and   .text   log   

原文地址:http://www.cnblogs.com/wancong/p/7380257.html

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