Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using libssl in Xcode

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

like image 673
kanedo Avatar asked Dec 07 '25 10:12

kanedo


1 Answers

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.:

#include <openssl/bio.h>
like image 128
Georg Fritzsche Avatar answered Dec 10 '25 00:12

Georg Fritzsche