摘要: using System.Security.Cryptography; // //MD5加密函数 // public string MD5(String str) { MD5 md5=new MD5CryptoServiceProvider(); byte[] data=System.Text.Encoding.Default.GetBytes(str); byte[] r... 阅读全文
posted @ 2006-09-27 09:32 Nina 阅读(432) 评论(0) 推荐(0)