生成MD5加密

Posted 前行。。。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成MD5加密相关的知识,希望对你有一定的参考价值。

      /// <summary>
        /// MD5加密
        /// </summary>
        /// <param name="str"></param>
        /// <returns></returns>
        public static string CalcMD5(this string str)
        {
            byte[] bytes = System.Text.Encoding.UTF8.GetBytes(str);
            return CalcMD5(bytes);
        }
        public static string CalcMD5(byte[] bytes)
        {
            using (MD5 md5 = MD5.Create())
            {
                byte[] computeBytes = md5.ComputeHash(bytes);
                string result = "";
                for (int i = 0; i < computeBytes.Length; i++)
                {
                    result += computeBytes[i].ToString("X").Length == 1 ? "0" + computeBytes[i].ToString("X") : computeBytes[i].ToString("X");
                }
                return result;

            }

        }
        public static string CalcMD5(Stream stream)
        {
            using (MD5 md5 = MD5.Create())
            {
                byte[] computeBytes = md5.ComputeHash(stream);
                string result = "";
                for (int i = 0; i < computeBytes.Length; i++)
                {
                    result += computeBytes[i].ToString("X").Length == 1 ? "0" +
                    computeBytes[i].ToString("X") : computeBytes[i].ToString("X");
                }
                return result;
            }
        }

 

以上是关于生成MD5加密的主要内容,如果未能解决你的问题,请参考以下文章

MD5加密 生成32位md5码

加密算法之 MD5算法

jmeter如何使用使用MD5加密?

linux中用给定的字符串生成md5加密的密码

生成MD5加密

MD5加密以及登录获取设置token