通过 HTTP 的二进制协议

发布于 2024-11-18 17:27:35 字数 224 浏览 1 评论 0原文

我有一个二进制全双工不安全协议。现在我必须保证它的

  1. 安全。
  2. 到处工作。

为此,我想使用 HTTP 作为传输协议。

  1. 我应该在二进制级别创建安全加密还是仅使用 HTTPS?
  2. 是否有一个带有发送/接收接口的库,利用 http 通道?
  3. 使用 HTTP 的效率如何?

问候。

I have a binary full-duplex unsecure protocol. Now I have to make it

  1. secure.
  2. working everywhere.

For this purpose I want to use HTTP as a transport protocol.

  1. Should I create security encription on the binary level or just use HTTPS?
  2. Is there a library with Send/Receive interface, that utilizes http channel?
  3. How efficient is using HTTP?

Regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薯片软お妹 2024-11-25 17:27:35

就像 Bruno 在他的评论中所说:使用 SSL。适用于所有平台的大量库。
没有 HTTP 复杂性的所有安全性无论如何都绝对没有用处。
在服务器上使用端口 443,第三方或中介机构将无法区分您的流量和 HTTPS 流量。 (不要混淆“端口”和“协议”。)

此外,如果您不介意分享有关此“全双工二进制协议”的目的和性质的更多信息,我们可以推荐更好的现有解决方案,例如 SRPT。

Like Bruno says in his comment: Use SSL. Plenty of libraries for all platforms.
All the security without the complexity of HTTP you have absolutely no use for anyway.
Use port 443 on the server, and no third party or intermediary will be able to distinguish your traffic from HTTPS traffic. (don't confuse "port" and "protocol".)

Also if you don't mind sharing more information about the purpose and nature of this "full duplex binary protocol", we could recommend even better existing solutions, like SRPT.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文