本文介绍了如何在MVC应用程序中加密querystring参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在MVC中加密querystring参数.
谢谢
Hi,
How to Encrypt querystring parameter in MVC.
Thanks
推荐答案
public static string Encrypt(string content, DateTime expiration)
{
return FormsAuthentication.Encrypt(new FormsAuthenticationTicket(1,
HttpContext.Current.Request.UserHostAddress, // or something fixed if you don't want to stick with the user's IP Address
DateTime.Now, expiration, false, content));
}
public static string Decrypt(string encryptedContent)
{
FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(encryptedContent);
if (!ticket.Expired)
return ticket.UserData;
return null; // or throw...
这篇关于如何在MVC应用程序中加密querystring参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!