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.
 
 
 
 
 
 
Bert Belder 9b22944b68 windows: fix the x64 debug build 12 years ago
..
asm windows: fix the x64 debug build 12 years ago
config openssl: use optimized asm code on x86 and x64 12 years ago
openssl windows: fix the x64 debug build 12 years ago
patches openssl: revert empty_OPENSSL_cpuid_setup.patch 12 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 Revert "Disable OpenSSL UI" 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