在 Xcode 中使用 libssl
我尝试包含 openssl (我尝试实现 ssh 客户端),并将 libssl.dylib 添加到我的 Xcode 项目中。但我不知道必须包含哪个标头才能使用它。 任何人都可以向我展示如何在 Xcode 中使用 libssl 的教程吗?
谢谢
I have tried to include openssl (I try to implement a ssh client) and I've added libssl.dylib to my Xcode Project. But I don't know which header I have to include to use it.
Can anyone show me a tutorial how to use libssl in Xcode?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OpenSSL 在包含方面没有什么特别之处,它位于标准 SDK 中,您可以从
openssl/*
包含所需的头文件,例如:There is nothing special about OpenSSL regarding includes, it is in the standard SDK and you include the header-files you need from
openssl/*
, e.g.: