Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 1 | OpenSSL on the Android platform. |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 2 | --- |
| 3 | |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 4 | The code in this directory is based on $OPENSSL_VERSION in the file |
| 5 | openssl.config, and some backported OpenSSL code in crypto/0.9.9-dev. |
Brian Carlstrom | f2ee5ff | 2010-03-30 09:41:16 -0700 | [diff] [blame^] | 6 | See patches/README for more information on how the code differs from |
| 7 | $OPENSSL_VERSION. |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 8 | |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 9 | Porting New Versions of OpenSSL. |
| 10 | -- |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 11 | |
| 12 | The following steps are recommended for porting new OpenSSL versions. |
| 13 | |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 14 | 1) Retrieve the appropriate version of the OpenSSL source from |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 15 | www.openssl.org/source (in openssl-*.tar.gz file). Check the PGP |
| 16 | signature (found in matching openssl-*.tar.gz.asc file) with: |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 17 | |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 18 | gpg openssl-*.tar.gz |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 19 | |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 20 | If the public key is not found, import the the one with the |
| 21 | matching RSA key ID from http://www.openssl.org/about/, using: |
| 22 | |
| 23 | gpg --import # paste PGP public key block on stdin |
| 24 | |
| 25 | 2) Update the variables in openssl.config and openssl.version as appropriate. |
| 26 | At the very least you will need to update the openssl.version. |
| 27 | |
| 28 | 3) Run: |
| 29 | |
| 30 | ./import_openssl.sh import openssl-*.tar.gz |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 31 | |
| 32 | 4) If there are any errors, then modify openssl.config, openssl.version |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 33 | and patches in patches/ as appropriate. You might want to use: |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 34 | |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 35 | ./import_openssl.sh regenerate patches/*.patch |
| 36 | |
| 37 | Repeat step 3. |
| 38 | |
| 39 | 5) Cleanup before building with: |
| 40 | |
| 41 | m -j16 clean-openssl clean-libcrypto clean-libssl |
| 42 | |
| 43 | 6) Build openssl from the external/openssl directory with: |
| 44 | |
| 45 | mm -j16 |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 46 | |
| 47 | If there are build errors, then patches/*.mk, openssl.config, or |
| 48 | android-config.mk may need updating. |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 49 | |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 50 | 7) Run tests to make sure things are working: |
| 51 | |
| 52 | (cd android.testssl/ && ./testssl.sh) |
| 53 | |
| 54 | 8) Do a full build before checking in: |
| 55 | |
| 56 | m clobber && m -j16 |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 57 | |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 58 | Optionally, check whether build flags (located in android-config.mk |
| 59 | need to be updated. Doing this step will help ensure that the |
| 60 | compiled library is appropriately optimized for speed and size. To |
| 61 | update build flags: |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 62 | |
Nagendra Modadugu | e45f106 | 2009-09-30 11:36:48 -0700 | [diff] [blame] | 63 | a) source openssl.config |
| 64 | b) tar -zxf openssl-*.tar.gz |
| 65 | c) cd openssl-*/ |
| 66 | d) ./Configure $CONFIGURE_ARGS |
| 67 | e) examine Makefile and compare with ../android-config.mk |
| 68 | f) modify ../openssl.config as appropriate and go to step 3) above. |
The Android Open Source Project | 656d9c7 | 2009-03-03 19:30:25 -0800 | [diff] [blame] | 69 | |
Brian Carlstrom | 98d58bb | 2010-03-09 09:56:55 -0800 | [diff] [blame] | 70 | Alternatively, ."/import_openssl.sh import" now prints the |
| 71 | post-Configure Makefile for review before deleting in on import. |