Java 中的安全流
在java中保护流的最佳方法是什么?我必须流式传输需要身份验证的音频文件才能访问
What is the best way to secure streams in java? I have to stream audio files which needs authentication before it can be accessed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 TJR 所说,您可能想查看安全套接字层(SSL 或 HTTPS)。当您使用 SSL 时,传输是安全的,因此如果您想确保用户是您认识的人,下一步就是通过该安全传输进行身份验证。 本文可能会帮助您入门。
You probably want to look at secure sockets layer (SSL or HTTPS) as TJR said. When you are using SSL, the transmissions are secured, so the next step is to authenticate over that secure transmission if you want to make sure the user is someone you know. This article might get you started.