blob: 54b6e0686d701c1dd23df7915d6458b4ed96dd49 [file] [log] [blame]
Alexandre Savard1b09e312012-08-07 20:33:29 -04001progs.patch:
2
3Fixup sources under the apps/ directory that are not built under the android environment.
4
5
6small_records.patch:
7
8Reduce OpenSSL memory consumption.
9SSL records may be as large as 16K, but are typically < 2K. In
10addition, a historic bug in Windows allowed records to be as large
1132K. OpenSSL statically allocates read and write buffers (34K and
1218K respectively) used for processing records.
13With this patch, OpenSSL statically allocates 4K + 4K buffers, with
14the option of dynamically growing buffers to 34K + 4K, which is a
15saving of 44K per connection for the typical case.
16
17
18handshake_cutthrough.patch
19
20Enables SSL3+ clients to send application data immediately following the
21Finished message even when negotiating full-handshakes. With this patch,
22clients can negotiate SSL connections in 1-RTT even when performing
23full-handshakes.
24
25jsse.patch
26
27Support for JSSE implementation based on OpenSSL.
28
Alexandre Savard75410672012-08-08 09:50:01 -040029npn.patch
30
31Transport Layer Security (TLS) Next Protocol Negotiation Extension
32
33sslv3_uninit_padding.patch
34
35This patch sets the padding for SSLv3 block ciphers to zero.
36
Alexandre Savard1b09e312012-08-07 20:33:29 -040037sha1_armv4_large.patch
38
39This patch eliminates memory stores to addresses below SP.