Using libssl in Xcode

I tried to enable openssl (I'm trying to implement an ssh client) and I added libssl.dylib to my Xcode project. But I donโ€™t know which title should I include in order to use it. Can someone show me a tutorial on how to use libssl in Xcode?

thank

+3
source share
1 answer

There is nothing special about inclusions in OpenSSL, it is in the standard SDK, and you include the header files you need, from openssl/*, for example:

#include <openssl/bio.h>
+1
source

Source: https://habr.com/ru/post/1749745/


All Articles