摘要:
using System.Security.Cryptography; // //MD5加密函数 // public string MD5(String str) { MD5 md5=new MD5CryptoServiceProvider(); byte[] data=System.Text.Encoding.Default.GetBytes(str); byte[] re... 阅读全文
posted @ 2009-05-02 16:34 张银 阅读(370) 评论(0) 推荐(0) 编辑