You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Nathan Rajlich 7142b260c6 build: tweak the openssl android configuration to build 12 years ago
..
config build: tweak the openssl android configuration to build 12 years ago
openssl crypto: fix uninitialized memory access in openssl 12 years ago
patches deps: upgrade openssl to 1.0.0f 13 years ago
README.chromium deps: upgrade openssl to 1.0.0f 13 years ago
buildinf.h import openssl from chrome 13 years ago
openssl.gyp build: use the openssl android configuration for "arm" builds 12 years ago

README.chromium

Name: openssl
URL: http://openssl.org/source/
Version: 1.0.0f
License: BSDish
License File: openssl/LICENSE

Description:
This is OpenSSL, the standard SSL/TLS library, which is used only in Android.

It's an unmodified, upstream source except for the patches listed below.


********************************************************************************
The following patches are taken from Android Open Source Project.


progs.patch:

Fixup sources under the apps/ directory that are not built under the android environment.


small_records.patch:

Reduce OpenSSL memory consumption.
SSL records may be as large as 16K, but are typically < 2K. In
addition, a historic bug in Windows allowed records to be as large
32K. OpenSSL statically allocates read and write buffers (34K and
18K respectively) used for processing records.
With this patch, OpenSSL statically allocates 4K + 4K buffers, with
the option of dynamically growing buffers to 34K + 4K, which is a
saving of 44K per connection for the typical case.


hand