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

MD5加密 + 盐

时间:2014-10-26 13:03:03      阅读:402      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   sp   div   

用的都不一样,我贴一下传智播客用的:

public static string GetMD5(string sDataIn)
        {
            MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
            byte[] bytValue, bytHash;
            bytValue = System.Text.Encoding.UTF8.GetBytes(sDataIn);
            bytHash = md5.ComputeHash(bytValue);
            md5.Clear();
            string sTemp = "";
            for (int i = 0; i < bytHash.Length; i++)
            {
                sTemp += bytHash[i].ToString("X").PadLeft(2, 0);
            }
            return sTemp.ToLower();

        }

        public static string GetPasswordSalt()
        {
            string salt = ConfigurationManager.AppSettings["passwordSalt"];
            return salt;
        }

 

MD5加密 + 盐

标签:style   blog   color   io   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/buzi521/p/4051807.html

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