Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building OpenSSL on Android NDK

I want to use DTLS (on OpenSSL) using JNI on Android 2.1/2.2.

Can someone help me get started (tutorials, howto, pointers etc) with building OpenSSL for Android (2.1/2.2) using the Android NDK?

Anything important that I should be aware of before doing it.

Thanks.

like image 497
Soumya Simanta Avatar asked Jun 01 '10 19:06

Soumya Simanta


2 Answers

I guess you don't need help with basic building of programs and OpenSSL.

For specifics of Android and OpenSSL, take a look at Fries's GitHub repository called android-external-openssl.

Take a look especially at README located here: http://github.com/fries/android-external-openssl/blob/master/README.android

There you have step by step instructions on how to build OpenSSL on Android.

like image 192
kost Avatar answered Nov 02 '22 09:11

kost


I've just finished a new fork of the current official Android openssl and got it building with ndk-build from NDKr5b. I tried to make it as easy as possible to build. It doesn't build the ARMv4 assembly stuff yet, it was failing, so any help with that would be most appreciated. Here's the git repo:

https://github.com/eighthave/openssl-android

just run ndk-build in openssl-android, and you should have libs/armeabi/libcrypto.so and libs/armeabi/libssl.so

EDIT: There is a new link for the latest version of this project:

https://github.com/guardianproject/openssl-android

like image 20
Hans-Christoph Steiner Avatar answered Nov 02 '22 11:11

Hans-Christoph Steiner