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.
 
 
 
 
 
 
Ben Noordhuis c945eae942 deps: fix -DOPENSSL_NO_SOCK on sunos 13 years ago
..
config deps: reapply 0a34755 to bundled openssl 13 years ago
openssl deps: fix -DOPENSSL_NO_SOCK on sunos 13 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 Disable OpenSSL UI 13 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