使用md5加密算法对post提交的数据进行加密,具体方法如下:
public static bool IsTrue(string miyao, params string[] parm)
{
StringBuilder sb = new StringBuilder();
foreach (string s in parm)
{
sb.Append(s);
}
sb.Append(GameKey);//公钥
string m= EncryptMD5(sb.ToString());//拼接后MD5加密的密钥
if (m.ToLower() == miyao.ToLower())
{
return true;
}
else
{
return false;
}
}
public static string EncryptMD5(string txt)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(txt, "MD5");
}
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: dbms如何对数据进行加密