32位MD5加密补齐丢失的0
Posted Jack毛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了32位MD5加密补齐丢失的0相关的知识,希望对你有一定的参考价值。
/// <summary> /// 获取32位MD5加密字符串(已补完0) /// </summary> /// <param name="strWord"></param> /// <returns></returns> public static string GetMD5String(string strWord) { string strRes = string.Empty; MD5 md5 = MD5.Create(); byte[] fromData = System.Text.Encoding.UTF8.GetBytes(strWord); byte[] targetData = md5.ComputeHash(fromData); for (int i = 0; i < targetData.Length; i++) { strRes += targetData[i].ToString("x2");//x不补0,x2把0补齐,X为大写 } return strRes; }
以上是关于32位MD5加密补齐丢失的0的主要内容,如果未能解决你的问题,请参考以下文章