as the title suggests, I'm struggling to make the inclusion of openssl libs in my xcode iOs project, such as:

#include <openssl/md5.h>
#include <openssl/sha.h>
#include <openssl/ripemd.h>

if anyone knows a good way to do it, that would be more than appreciated. I tried to add the

/usr/include/openssl 

to my inclusion paths in the project configuration, but it didn't turned out to be a good solution.

So, I was asking myself if anybody knew how to deal with it

thx a ton!

-k-

link|improve this question

79% accept rate
1  
Why not use the Apple supplied CommonCrypto libraries? ripemd is available from: opensource.apple.com – Zaph Feb 13 at 15:20
feedback

1 Answer

up vote 0 down vote accepted

For me, using OpenSSL on iOS involved building OpenSSL from source for the iOS architectures (though I suppose finding pre-compiled libs would also work), then adding the OpenSSL header files and configuring the project's Header Search Paths appropriately. I used this as a rough guide.

Just be sure you really need OpenSSL before you commit. There are lots of built-in crypto routines in Apple's CommonCrypto and Security frameworks.

link|improve this answer
yes, I also tried libcommonCrypto.dylib but it still complains that the libs could not be found. I was giving a look to the the A Tasty Pixel blog post, but I read in the comments that you expect some oddities by running the project in Xcode 4, anyways I'll give it a shot. – holographix Feb 13 at 16:32
@holographix, yeah, linking with libcommonCrypto won't make SSL available. That lib is an alternative to using OpenSSL directly, not OpenSSL itself. – Matt Wilding Feb 13 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.