在部署到 Play 商店之前,我必须在应用程序中加密用户和服务器之间的哪些流量?

发布于 2025-01-17 01:43:15 字数 107 浏览 2 评论 0原文

我有一个简单的应用程序通过一些套接字连接到服务器,并且流量尚未加密,用户必须在使用该应用程序之前登录或创建帐户,然后流量在用户和服务器之间共享。我想知道是否必须加密所有流量或仅加密身份验证和帐户创建?

I have a simple app connected to a server via some sockets and the traffic is not yet encrypted users must log in or create accounts before using the app and afterwards traffic is shared between users and server. i want to know if i must encrypt all traffic or just the authentication and account creation?

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

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

发布评论

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

评论(1

葮薆情 2025-01-24 01:43:15

对所有流量使用 https(或对非 HTTP 流量使用基于 TLS 的等效协议)。是的,加密和证书验证一切。对于现代系统,在极少数情况下 TLS 不是网络流量的正确答案。它可以跨平台、语言和协议普遍使用。

在任何现代网络系统上,您都需要一个论据来解释为什么您不会对连接进行加密和身份验证。这不是“必须”你的问题。这是一个“你为什么不呢?”的问题。

Use https for all traffic (or an equivalent TLS-based protocol for non-HTTP traffic). Yes, encrypt and certificate-authenticate everything. For modern systems, there are vanishingly few cases where TLS is not the correct answer for network traffic. It is ubiquitously available across platforms, languages, and protocols.

On any modern network system you need an argument for why you wouldn't encrypt and authenticate the connection. It's not a matter of "must" you. It's a matter of "why wouldn't you?"

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