c# MD5加密
Posted Z&K
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# MD5加密相关的知识,希望对你有一定的参考价值。
1 public static string GetMD5(string myString) 2 { 3 MD5 md5 = new MD5CryptoServiceProvider(); 4 byte[] fromData = System.Text.Encoding.Unicode.GetBytes(myString); 5 byte[] targetData = md5.ComputeHash(fromData); 6 string byte2String = null; 7 8 for (int i = 0; i < targetData.Length; i++) 9 { 10 byte2String += targetData[i].ToString("x"); 11 } 12 13 return byte2String; 14 }
以上是关于c# MD5加密的主要内容,如果未能解决你的问题,请参考以下文章