javascript和python的公钥解决方案
我正在寻找一个可以与 javascript 客户端和 python 后端一起使用的公钥解决方案。目的是将加密的数据从客户端发送到服务器......有什么解决方案吗?感谢您的提示。
I'm looking for a public private key solution that I can use with a javascript client and python backend. The aim is to send data encrypted from the client to the server... Are the any solutions? Thanks for hints.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 SSL 连接到服务器。最简单的方法可能是使用 HTTP 进行通信,并在服务器上运行代理(例如 Apache),该代理可以执行 HTTPS 并将请求转发到实际的服务器应用程序。
Use SSL for your connections to the server. Probably the easiest way to do that is to use HTTP for communication and also to run a proxy (say, Apache) on the server that can do HTTPS and forwards requests to the actual server application.