Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
android-config.mk | 13-Nov-2012 | 1K | |
Android.mk | 13-Nov-2012 | 424 | |
android.testssl/ | 13-Nov-2012 | ||
apps/ | 13-Nov-2012 | ||
Apps.mk | 13-Nov-2012 | 1.8K | |
CleanSpec.mk | 13-Nov-2012 | 4.1K | |
crypto/ | 13-Nov-2012 | ||
Crypto.mk | 13-Nov-2012 | 17.5K | |
e_os.h | 13-Nov-2012 | 22.8K | |
e_os2.h | 13-Nov-2012 | 10.2K | |
import_openssl.sh | 13-Nov-2012 | 9.2K | |
include/ | 13-Nov-2012 | ||
MODULE_LICENSE_BSD_LIKE | 13-Nov-2012 | 0 | |
NOTICE | 13-Nov-2012 | 6.1K | |
openssl.config | 13-Nov-2012 | 4.4K | |
openssl.version | 13-Nov-2012 | 23 | |
patches/ | 13-Nov-2012 | ||
README.android | 13-Nov-2012 | 3.6K | |
ssl/ | 13-Nov-2012 | ||
Ssl.mk | 13-Nov-2012 | 2.7K |
1 OpenSSL on the Android platform. 2 --- 3 4 The code in this directory is based on $OPENSSL_VERSION in the file 5 openssl.version. See patches/README for more information on how the 6 code differs from $OPENSSL_VERSION. 7 8 Porting New Versions of OpenSSL. 9 -- 10 11 The following steps are recommended for porting new OpenSSL versions. 12 13 1) Retrieve the appropriate version of the OpenSSL source from 14 www.openssl.org/source (in openssl-*.tar.gz file). Check the PGP 15 signature (found in matching openssl-*.tar.gz.asc file) with: 16 17 gpg openssl-*.tar.gz.asc 18 19 If the public key is not found, import the the one with the 20 matching RSA key ID from http://www.openssl.org/about/, using: 21 22 gpg --import # paste PGP public key block on stdin 23 24 2) Update the variables in openssl.config and openssl.version as appropriate. 25 At the very least you will need to update the openssl.version. 26 27 3) Run: 28 29 ./import_openssl.sh import openssl-*.tar.gz 30 31 4) If there are any errors, then modify openssl.config, openssl.version 32 and patches in patches/ as appropriate. You might want to use: 33 34 ./import_openssl.sh regenerate patches/*.patch 35 36 Repeat step 3. 37 38 5) Cleanup before building with: 39 40 m -j16 clean-libcrypto clean-libssl clean-openssl clean-ssltest 41 42 6) Build openssl from the external/openssl directory with: 43 44 mm -j16 snod && adb remount && adb sync system 45 46 If there are build errors, then patches/*.mk, openssl.config, or 47 android-config.mk may need updating. 48 49 7) Run tests to make sure things are working: 50 51 # Run local openssl tests 52 (cd android.testssl/ && ./testssl.sh) 53 # Build and sync libcore tests 54 (croot && cd libcore && mm -j16 snod && adb remount && adb sync) 55 # Run tests from libcore 56 (croot && vogar --classpath out/target/common/obj/JAVA_LIBRARIES/core-tests-support_intermediates/classes.jar --classpath out/target/common/obj/JAVA_LIBRARIES/core-tests_intermediates/classes.jar javax.net.ssl tests.api.javax.net) 57 # Run tests from Harmony 58 (croot && vogar --classpath harmony_tests.jar tests.api.java.math.BigIntegerTest org.apache.harmony.tests.java.math) 59 # try an https website 60 adb shell am start https://online.citibank.com # confirm result in browser 61 62 The vogar tool can be found externally at http://code.google.com/p/vogar/ 63 Within Google it can be run with ~dalvik-prebuild/vogar/bin/vogar 64 65 harmony_tests.jar is built from Subversion http://harmony.apache.org/ 66 Within Google it can be found at ~dalvik-prebuild/bin/harmony_tests.jar 67 68 # You can also run openssl s_server as a test server on the device: 69 adb push ./android.testssl/CAss.cnf /sdcard/CAss.cnf 70 adb shell openssl req -config /sdcard/CAss.cnf -x509 -nodes -days 365 -subj '/C=US/ST=California/L=Mountain View/CN=localhost' -newkey rsa:1024 -keyout /sdcard/server.pem -out /sdcard/server.pem 71 adb shell openssl s_server -cert /sdcard/server.pem -www -verify 1 72 adb shell am start https://localhost:4433 # confirm result in browser 73 74 8) Do a full build before checking in: 75 76 m -j16 77 78 Optionally, check whether build flags (located in android-config.mk 79 need to be updated. Doing this step will help ensure that the 80 compiled library is appropriately optimized for speed and size. To 81 update build flags: 82 83 a) source openssl.config 84 b) tar -zxf openssl-*.tar.gz 85 c) cd openssl-*/ 86 d) ./Configure $CONFIGURE_ARGS 87 e) examine Makefile and compare with ../android-config.mk 88 f) modify ../openssl.config as appropriate and go to step 3) above. 89 90 Alternatively, ."/import_openssl.sh import" now prints the 91 post-Configure Makefile for review before deleting in on import. 92