使用md5加密算法对post提交的数据进行加密,具体方法如下:public static bool IsTrue(string miyao, params string[] parm){StringBuilder sb = new Stri
使用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");
}
--结束END--
本文标题: post提交数据如何加密
本文链接: https://lsjlt.com/news/113535.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0