views:

126

answers:

1

Hello, 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

+1  A: 

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>
Georg Fritzsche