openssl libs in Xcode 4

2019-02-16 00:12发布

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-

3条回答
放我归山
2楼-- · 2019-02-16 00:44

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.

查看更多
三岁会撩人
3楼-- · 2019-02-16 00:54

I downloaded openssl from OpenSSL.org (see the version marked "LATEST") and used this iOS build procedure. So far all is going well for me, but I'm in early stages of this development. The reason I needed OpenSSL was to do on-device in-app purchase receipt validation (see this Apple page on Validating Receipts Locally).

查看更多
爷的心禁止访问
4楼-- · 2019-02-16 01:06

I ended up using ios-openssl, which worked very well for me.

查看更多
登录 后发表回答