William Jockusch
William Jockusch

Reputation: 27335

Mac app store -- trying to get encryption to work . . . what am I missing?

I am trying to use Alan Quartermain's solution as linked from this question, Mac App Store Receipt Validation Code? I keep running into a bunch of unknown symbol errors at link time. Here are some of the unknown symbols: _BIO_new, _BIO_ctrl_, _EVP_sha1, _X509_STORE_free. Can anyone clue me in to what I need to do to get rid of these errors?

Things I have done:

Thanks.

Upvotes: 2

Views: 275

Answers (1)

user557219
user557219

Reputation:

All the symbols you’ve listed are exported by libcrypto, which is part of OpenSSL. Have you tried linking libcrypto as well? You can do that by editing your project settings, Build tab, Other Linker Flags, and specifying -lcrypto.

Upvotes: 4

Related Questions