摘要:
1 public static string ImgToBase64String(string filepath) 2 { 3 try 4 { 5 Bitmap bmp = new Bitmap(fil... 阅读全文
摘要:
#region ========加密======== /// /// 加密 /// /// /// public static string Encrypt(string Text) { ... 阅读全文
摘要:
using System.Security.Cryptography;using System.IO; using System.Text; ///MD5加密 public string MD5Encrypt(string pToEncrypt, string sKey... 阅读全文
摘要:
/// /// ///////MD5加密 /// /// /// public static string MD5(string Sourcein) { MD5CryptoServiceProvider MD5CSP = new MD5Cr... 阅读全文
摘要:
/// /// ////post数据 /// /// /// /// /// public static string SendMsg(string fxPhone, string fxPassword, string toPhone, string m... 阅读全文
摘要:
/// /// 获取当前时间戳 /// /// 为真时获取10位时间戳,为假时获取13位时间戳. /// public static string getTimeStamp(bool bflag = tr... 阅读全文
摘要:
来源:http://www.chinaitpower.com/A/2005-05-13/116840.html 1.来历 MD5的全称是message-digest algorithm 5(信息-摘要算法,在90年代初由mit laboratory for computer science和r... 阅读全文
摘要:
利用下面的方法,可直接输入数据,反回md5加密后的代码/// /// 用md5加密 /// /// 输入的数据 /// public static string MD5(string Sourcein) { MD5CryptoServiceProvider MD5CSP = new MD5C... 阅读全文