如何从 iOS 应用程序检测不安全的 wifi 网络
我想检测我的应用程序中是否存在不安全的 wifi 网络。是否有任何公共 iOS API 可以实现相同的目的?
I would like to detect the presence of unsecured wifi network in my app. Is there any public iOS API available to achieve the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有记录的 API 可以获取该信息。如果您的应用程序需要通过网络发送和接收敏感数据,您通常应该假设没有安全连接。
There is no documented API to get that information. If you application needs to send and receive sensitive data across the network, you should generally assume that no connection is secured.
我建议您为 Web 服务使用 SSL 连接。然后留下的数据将被加密。
I would suggest you use an SSL connection for your web service. Then the data that leaves will be encrypted.
查看 stumbler 应用程序,特别是 MSNetworkDetailsView 类,它提供了您需要的详细程度。
Have a look at the stumbler application and in particular the MSNetworkDetailsView class, it gives the level of detail that you need.