Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: patches/README

Issue 10911247: Upstream openssl to version 1.0.1c (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 progs.patch:
2
3 Fixup sources under the apps/ directory that are not built under the android env ironment.
M-A Ruel 2012/09/12 15:10:07 80 cols
digit 2012/09/12 15:30:34 This comes from the Android tree, and I prefer to
4
5
6 small_records.patch:
7
8 Reduce OpenSSL memory consumption.
9 SSL records may be as large as 16K, but are typically < 2K. In
10 addition, a historic bug in Windows allowed records to be as large
11 32K. OpenSSL statically allocates read and write buffers (34K and
12 18K respectively) used for processing records.
13 With this patch, OpenSSL statically allocates 4K + 4K buffers, with
14 the option of dynamically growing buffers to 34K + 4K, which is a
15 saving of 44K per connection for the typical case.
16
17
18 handshake_cutthrough.patch
19
20 Enables SSL3+ clients to send application data immediately following the
21 Finished message even when negotiating full-handshakes. With this patch,
22 clients can negotiate SSL connections in 1-RTT even when performing
23 full-handshakes.
24
25 jsse.patch
26
27 Support for JSSE implementation based on OpenSSL.
28
29 sha1_armv4_large.patch
30
31 This patch eliminates memory stores to addresses below SP.
32
33
34 mips_private.patch:
35
36 Fix duplicate defines of labels AES_set_encrypt_key and AES_set_decrypt_key
37 by prefixing Mips version with private_ .
38 Revise import script to generate o32-abi .s files for Mips.
OLDNEW
« README.chromium ('K') | « openssl.gyp ('k') | patches/empty_OPENSSL_cpuid_setup.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698