云服务器网:购买云服务器和VPS必上的网站!

数据:post提交数据怎么加密

post提交数据怎样加密使用md5加密算法对post提交的数据进行加密,具体方法以下:public static bool IsTrue(string miyao, params string[] parm){StringBuilder sb = new St

post提交数据怎样加密

使用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");

}


本文来源:https://www.yuntue.com/post/59574.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注