summaryrefslogtreecommitdiffstats
path: root/android.testssl
Commit message (Collapse)AuthorAgeFilesLines
* openssl-1.0.1e upgradeBrian Carlstrom2013-02-111-0/+17
| | | | Change-Id: I4520a7e044b1c6a1b9d09b365bc18b178826131e
* Remove small_records.patch in favor of SSL_MODE_RELEASE_BUFFERSBrian Carlstrom2013-01-171-9/+0
| | | | | | Restored handshake_cutthrough.patch to upstream having removed traces of the small_records.patch Change-Id: Iae8df5f24fe5fe566e81421e9db4c2f1ea5f1b53
* openssl-1.0.1 upgradeBrian Carlstrom2012-03-214-376/+62
| | | | | | Bug: 6168278 Change-Id: I648f9172828120df5d19a14425e9ceec92647921
* Upgrade to openssl-1.0.0fBrian Carlstrom2012-01-041-4/+4
| | | | | Bug: 5822335 Change-Id: Iadf81526a10b072ff323730db0e1897faea7a13f
* Re-enable SSL's cut-through feature in Master over openSSL 1.0.0.Huahui Wu2010-04-231-0/+2
| | | | | | | | | It was pulled because of b/2586347 but it turns out to be a problem in the tests. The tests were fixed in Change Id8472487, and the feature is re-enabled here. Bug id: 2614118 Change-Id: I0bf365dbacd8e962e1156fb1f94a684c60802f4d
* openssl-1.0.0 upgradeBrian Carlstrom2010-04-193-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | external/openssl Updated version to 1.0.0 openssl.version Updated small records patch for 1.0.0. This is probably the most significant change. patches/small_records.patch Removed bad_version.patch since fix is included in 0.9.8n and beyond patches/README patches/bad_version.patch openssl.config Changed import_openssl.sh to generate armv4 asm with the 1.0.0 scripts, not our backported 0.9.9-dev backported version in patches/arm-asm.patch. import_openssl.sh openssl.config patches/README patches/arm-asm.patch Added -DOPENSSL_NO_STORE to match ./Configure output Added -DOPENSSL_NO_WHIRLPOOL (no-whrlpool) to skip new optional cipher android-config.mk openssl.config Fixed import to remove include directory during import like other imported directories (apps, ssl, crypto) import_openssl.sh Updated UNNEEDED_SOURCES. Pruned Makefiles which we don't use. openssl.config Updated to build newly required files patches/apps_Android.mk patches/crypto_Android.mk Disable some new openssl tools patches/progs.patch Updated upgrade testing notes to include running BigInteger tests README.android Automatically imported android.testssl/ apps/ crypto/ e_os.h e_os2.h include/ ssl/ dalvik Change makeCipherList to skip SSLv2 ciphers that 1.0.0 now returns so there are not duplicate ciphersuite names in getEnabledCipherSuites. libcore/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp Updated OpenSSLSocketImpl_cipherauthenticationmethod for new SSL_CIPHER algorithms -> algorithm_auth (and const-ness) libcore/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp Update to const SSL_CIPHER in OpenSSLSessionImpl_getCipherSuite (and cipherauthenticationmethod) libcore/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp test_EnabledCipherSuites on both SSLSocketTest and SSLServerSocketTest caught the makeCipherList problem. However the asserts where a bit out of sync and didn't give good messages because they didn't actually show what was going on. As part of debugging the issue they found, I tried to make align the asserts and improve their output for the future. libcore/x-net/src/test/java/tests/api/javax/net/ssl/SSLServerSocketTest.java libcore/x-net/src/test/java/tests/api/javax/net/ssl/SSLSocketTest.java vendor/google Add const to X509V3_EXT_METHOD* for 1.0.0 compatibility libraries/libjingle/talk/base/openssladapter.cc Change-Id: I90fb1566dede6034eebc96d2b0dcf4533d9643bf
* disable handshake_cutthrough.patchBrian Carlstrom2010-04-131-2/+0
| | | | | | | | CTS tests exposed compatability problems for SSLSocket applications with handshake cutthrough enabled. Disabling until they can be resolved. b/2586347 Change-Id: If2e43f50712780e1905c86b64ac2f89e95e7cc95
* Re-enable the cut-through (a.k.a false start) feature in openSSL.Huahui Wu2010-03-311-0/+2
| | | | | | | This will save one RTT for SSL handshake. b/2511073 explains the details. Change-Id: I01cd02d2df375bc02eec12814308f0a6e63b8ae1
* fix /mnt/sdcard to /sdcard in android.testsslBrian Carlstrom2010-03-223-4/+4
| | | | | | found when merging to dalvik-dev where test failed because of incorrect path Change-Id: Ib87af202fdf4027d8c133a27bd956227c6d741e6
* b/2522132 Native crash in sslRead()Brian Carlstrom2010-03-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: - the small_records.patch finished code review today, importing final version - the native crash reflected an underling openssl issue, so we have a new patch for this Details: Adding new patch for b/2522132 crash patches/bad_version.patch Syncing small_records.patch with reviewed version patches/small_records.patch Adding new patch to the list of active patches openssl.config Adding description of the new bad_version.patch patches/README Minor test script changes - Added adb remount - Simplified /mnt/sdcard to /sdcard patches/testssl.sh Added trace message as each patch is applied so I could more easily confirm that the newly added bad_version.patch was applied. import_openssl.sh Automatically generated files: android.testssl/testssl.sh ssl/d1_pkt.c ssl/s3_both.c ssl/s3_pkt.c Change-Id: I1ca1b69d612ef425203074c58c031d6a681b92fe
* b/2453395 cannot reach sslvpn.broadcom.comBrian Carlstrom2010-03-121-2/+0
| | | | | | Disabled handshake_cutthrough.patch in openssl.config Change-Id: I4fe837876198dcf0593c5f5d32174d8af76f3f9f
* Summary: upgrading to openssl-0.9.8m and adding new testssl.shBrian Carlstrom2010-03-095-0/+721
Testing Summary: - Passed new android.testssl/testssl.sh - General testing with BrowserActivity based program Details: Expanded detail in README.android about how to build and test openssl upgrades based on my first experience. modified: README.android Significant rework of import_openssl.sh script that does most of the work of the upgrade. Most of the existing code became the main and import functions. The newly regenerate code helps regenerate patch files, building on the fact that import now keeps and original unmodified read-only source tree for use for patch generation. Patch generation relies on additions to openssl.config for defining which patches include which files. Note that sometimes a file may be patched multiple times, in that case manual review is still necessary to prune the patch after auto-regeneration. Other enhancements to import_openssl.sh include generating android.testssl and printing Makefile defines for android-config.mk review. modified: import_openssl.sh Test support files for openssl/ Add support for building /system/bin/ssltest as test executible for use by testssl script. Need confirmation that this is the right way to define such a test binary. modified: patches/ssl_Android.mk Driver script that generates user and CA keys and certs on the device with /system/bin/openssl before running testssl. Based on openssl/test/testss for generation and openssl/test/Makefile test_ssl for test execution. new file: patches/testssl.sh Note all following android.testssl files are automatically imported from openssl, although possible with modifications by import_openssl.sh testssl script imported from openssl/test that does the bulk of the testing. Includes new tests patched in for our additions. new file: android.testssl/testssl CA and user certificate configuration files from openssl. Automatically imported from openssl/test/ new file: android.testssl/CAss.cnf new file: android.testssl/Uss.cnf certificate and key test file imported from openssl/apps new file: android.testssl/server2.pem Actual 0.9.8m upgrade specific bits Trying to bring ngm's small records support into 0.9.8m. Needs signoff by ngm although it does pass testing. modified: patches/small_records.patch Update openssl.config for 0.9.8m. Expanded lists of undeeded directories and files for easier update and review, adding new excludes. Also added new definitions to support "import_openssl.sh regenerate" for patch updating. modified: openssl.config Updated OPENSSL_VERSION to 0.9.8m modified: openssl.version Automatically imported/patched files. Seems like it could be further pruned in by openssl.config UNNEEDED_SOURCES, but extra stuff doesn't end up impacting device. modified: apps/... modified: crypto/... modified: include/... modified: ssl/... Other Android build stuff. Note for these patches/... is source, .../Android.mk is derived. Split LOCAL_CFLAGS additions into lines based on openssl/Makefile source for easier comparison when upgrading. I knowingly left the lines long and unwrapped for easy vdiff with openssl/Makefile modified: android-config.mk Removed local -DOPENSSL_NO_ECDH already in android-config.mk. modified: patches/apps_Android.mk Sync up with changes that had crept into derived crypto/Android.mk modified: patches/crypto_Android.mk Change-Id: I73204c56cdaccfc45d03a9c8088a6a93003d7ce6