网页和服务器之间的安全通信
我想知道是否已经有一个组合,比如说 jQuery - 一些 C# DLL,可以在带有 jQuery 的 ASPX 表单和基于带有 C# 类的 ashx 文件的控制层之间提供安全的双向通信...
[来自下面的评论]
嗯,我知道我必须说得更具体。这些是简单网络分析工具上的嗅探器,甚至是 Firebug,可以让您查看通过 POST 或 GET 传输的数据。保护服务器客户端应用程序的想法是确保数据不会损坏和泄露,并且要实现这一点,您必须使攻击者无法报告虚假信息,因此最好是在客户端和客户端上改进一些加密算法服务器加密解密编码解码数据...
I'm wondering if theres already a combo let say jQuery - Some C# DLL to proive a secure both way communication between ASPX forms with jQuery and a control layer based on ashx files with C# classes...
[From comment below]
Well I see I have to be more specific. The are things like sniffers on simple network analysis tools even like Firebug that let you see the data transfered via POST or GET. The idea to secure a Server Client application is to ensure that data isn't corrupt and compromised, and to achive that you have to make imposible to an atacker to report false info so the best is to have improved some cryptographyc algorithms both on client and server to crypt decrypt encode decode data...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保客户端和服务器之间的 Web 通信安全的唯一方法是使用 SSL。
The only way you can ever make web communication secure between a client and a server is by using SSL.
这里是一个 Javascript AES 引擎。
但是,您确实应该使用 SSL。
Here is a Javascript AES engine.
However, you really should use SSL instead.