码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET MD5加密

时间:2014-06-18 19:45:26      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   string   

        /// <summary>
        /// MD5加密
        /// </summary>
        /// <param name="str"></param>
        /// <param name="code"></param>
        /// <returns></returns>
        public static string MD5(string str, int code)
        {
            if (code == 16)
            {
                return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower().Substring(8, 16);
            }
            else
            {
                return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower();
            }
        }

 

ASP.NET MD5加密,布布扣,bubuko.com

ASP.NET MD5加密

标签:style   class   blog   code   color   string   

原文地址:http://www.cnblogs.com/leichentao0905/p/3790662.html

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