Which framework i need to import to compile if i want to use openssl/bn.h i am getting compilation errors ("referenced from") for all BN functions
please help
Which framework i need to import to compile if i want to use openssl/bn.h i am getting compilation errors ("referenced from") for all BN functions
please help
OpenSSL is used internally on the phone, but the API is not supported for app development, and the symbols are not available to iPhone apps.
If you want to use openssl you will need to build it and statically link it with your app. That will also mean you you need to deal with export compliance. Yeah, I think it sucks too. If you think Apple should expose some particular OpenSSL functionality you should file a feature request.
In order to build the library maybe this link is useful http://www.therareair.com/2009/01/01/tutorial-how-to-compile-openssl-for-the-iphone/