md5加密_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > md5加密

md5加密

 2015/2/9 17:49:07  深思工作室  程序员俱乐部  我要评论(0)
  • 摘要:先引用两个命名空间usingSystem.Security.Cryptography;usingSystem.Text;以下是md5加密方法///<summary>///md5加密--32位///</summary>///<paramname="text"></param>///<returns></returns>publicstaticstringmd5jiami(stringtext)
  • 标签:

先引用两个命名空间

using System.Security.Cryptography;
using System.Text;

以下是md5加密方法

/// <summary>
        /// md5加密--32位
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        public static string md5jiami(string text)
        {
            byte[] result = Encoding.Default.GetBytes(text);
            MD5 md5 = new MD5CryptoServiceProvider();
            byte[] output = md5.ComputeHash(result);
            string s = BitConverter.ToString(output).Replace("-", "");
            return s;
        }

 

  • 相关文章
发表评论
用户名: 匿名