摘要: View Code 1、MD5转换 using System.Security.Cryptography; /// <summary> /// 计算字符串的MD5值 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string GetMD5(string str) { //将得到的明文转化为比特数组 byte[] Buffer = Sys... 阅读全文
posted @ 2012-08-03 00:30 Fan帥帥 阅读(228) 评论(0) 推荐(0) 编辑