9

I need libcrypto.a and libssl.a static library for arm64 bit architecture in iOS 7 to build and run a project.

Opu
  • 190
  • 1
  • 1
  • 9

1 Answers1

19

You can build it from source with this build script: https://github.com/x2on/OpenSSL-for-iPhone

x2on
  • 2,267
  • 3
  • 24
  • 44
  • Thanks for sharing the link.I am able to build the script and i have got the libcrypto.a, libssl.a files. But the problem hear is i am getting the error saying "openssl/bio.h file not found" when i am building the application in Xcode5. Can u please help me on this issue? – Ganesh Jan 14 '14 at 12:30
  • You must include the header files in you HEADER_SEARCH_PATH – x2on Feb 05 '14 at 17:02
  • 1
    As of writing this, that script is broken and unable to compile the openssl library. Both the old 1.0.2 version and the newest (as of writing this) version 1.1.1a of the openssl library fail to be compiled by the script (fails at running the configure script), at least using the current clang/xcode. The script hasn't been updated in two years, and it's not obvious how it could be fixed. Any ideas, or alternatives? – Warp Dec 19 '18 at 09:56