• Home
Name Date Size #Lines LOC

..--

READMED03-May-20241.1 KiB3823

apps_Android.mkD03-May-20241.1 KiB8063

crypto_Android.mkD03-May-202410 KiB539522

handshake_cutthrough.patchD03-May-202410.5 KiB276260

jsse.patchD03-May-202410.4 KiB298282

progs.patchD03-May-20241.6 KiB5550

secadv_20101116-2.patchD03-May-20243.7 KiB10097

small_records.patchD03-May-202410.7 KiB338315

ssl_Android.mkD03-May-20241.5 KiB7669

testssl.shD03-May-20242.1 KiB7842

README

1progs.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
29
30secadv_20101116-2.patch
31
32OpenSSL Security Advisory [16 November 2010]
33TLS extension parsing race condition. (UPDATED)
34CVE-2010-3864
35http://www.openssl.org/news/secadv_20101116-2.txt
36
37
38