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

Sha1加密

时间:2014-07-28 15:09:53      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   div   ar   new   

  1.         /// <summary>
            /// Sha1
            /// </summary>
            /// <param name="str"></param>
            /// <returns></returns>
            public static string Sha1(string str)
            {
                byte[] strres = Encoding.Default.GetBytes(str);
                HashAlgorithm isha = new SHA1CryptoServiceProvider();
                strres = isha.ComputeHash(strres);
                StringBuilder EnText = new StringBuilder();
                foreach (byte item in strres)
                {
                    EnText.AppendFormat("{0:x2}", item);
                }
    
                return EnText.ToString();
            }
            /// <summary>
            /// Sha1
            /// </summary>
            /// <param name="str"></param>
            /// <returns></returns>
            public static string Sha1(string str)
            {
                byte[] strres = Encoding.Default.GetBytes(str);
                HashAlgorithm isha = new SHA1CryptoServiceProvider();
                strres = isha.ComputeHash(strres);
                StringBuilder EnText = new StringBuilder();
                foreach (byte item in strres)
                {
                    EnText.AppendFormat("{0:x2}", item);
                }
    
                return EnText.ToString();
            }

     

Sha1加密,布布扣,bubuko.com

Sha1加密

标签:style   blog   color   os   for   div   ar   new   

原文地址:http://www.cnblogs.com/Evaniko/p/3872656.html

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