English 中文(简体)
ASP. NET在没有SSL的情况下形成数据加密
原标题:ASP.NET form s data encryption without SSL

通常,如果我填写一份表格,数据将发给服务器,作为原始便衣,可以用刀子阅读。

我想对数据用户(如用户名称、密码......)进行加密,然后将其发送服务器。

It seems that there are two ways:
1- Using SSL (in my scenarion, I can t use)
2- Using custom ActiveX control.
3- Using server side dynamic javascript encryption function.

哪一种是更好的解决办法或任何其他解决办法?

最佳回答

如果你能够使用特殊电离层移动式电离层移动式电离层机,那么你必须使用用户方的公用钥匙加密法,因为对称加密需要一种关键交换,而不是一种不安全的渠道,而这种交换不符合目的。

我本人曾尝试过,但我发现,该图书馆在javascript中进行RSA加密。

问题回答

服务器对面加密赢得了笔工作,因为它无法解决问题(向服务器传送文字数据)。 你们需要的是采用不对称加密算法。 类似于RSA。 服务器可以向客户提供公共钥匙,用于在发送之前对表格数据进行加密,然后可以使用私人钥匙在接收数据之后对数据进行加密。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签