摘要: 1: public string CreateMD5(string inputStr) 2: { 3: MD5 md5 = MD5.Create(); 4: byte[] byteChar = md5.ComputeHash(Encoding.Default.GetBytes(inputStr)); 5:  6: StringBuilder sb = new StringBuilder(... 阅读全文
posted @ 2008-12-27 18:53 樊凯 阅读(776) 评论(3) 推荐(0) 编辑