日期:2014-05-18 浏览次数:20635 次
using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; namespace CSharpMD5加密 { class Program { static void Main(string[] args) { Console.WriteLine(UserMd5("中国")); Console.ReadLine(); } static string UserMd5(string str) { string pwd = ""; MD5 md5 = MD5.Create();//实例化一个md5对像 // 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择 byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(str)); // 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得 for (int i = 0; i < s.Length; i++) { // 将得到的字符串使用十六进制类型格式。格式后的字符是小写的字母,如果使用大写(X)则格式后的字符是大写字符 pwd = pwd + s[i].ToString("X"); } return pwd; } } }