summaryrefslogtreecommitdiff
path: root/README.chromium
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@4ff67af0-8c30-449e-8e8b-ad334ec8d88c>2010-11-05 14:55:34 +0000
committeragl@chromium.org <agl@chromium.org@4ff67af0-8c30-449e-8e8b-ad334ec8d88c>2010-11-05 14:55:34 +0000
commitc9490d33b98b7affb729b5f1db13cb0a348471a1 (patch)
treea04d057a191388d54509b727e2bb4fef8ea8ce48 /README.chromium
downloadopenssl-c9490d33b98b7affb729b5f1db13cb0a348471a1.tar.gz
Add openssl 0.9.8o
git-svn-id: http://src.chromium.org/svn/trunk/deps/third_party/openssl@65201 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
Diffstat (limited to 'README.chromium')
-rw-r--r--README.chromium47
1 files changed, 47 insertions, 0 deletions
diff --git a/README.chromium b/README.chromium
new file mode 100644
index 0000000..4500efc
--- /dev/null
+++ b/README.chromium
@@ -0,0 +1,47 @@
+Name: openssl
+URL: http://openssl.org/source/
+Version: 0.9.8o
+License: BSDish
+License file: openssl/LICENSE
+
+This is OpenSSL, the standard SSL/TLS library, which is used only for testing.
+It's an unmodified, upstream source except for the patches listed below.
+
+
+Patches are applied in this order:
+
+missing_stddef.patch
+
+Add stddef.h to header files which use size_t, otherwise apps that include
+those headers get compiler errors.
+
+
+handshake_cutthrough.patch
+
+Enables SSL3+ clients to send application data immediately following the
+Finished message even when negotiating full-handshakes. With this patch,
+clients can negotiate SSL connections in 1-RTT even when performing
+full-handshakes.
+
+
+next_proto_neg.patch
+
+Adds next-protocol-negotation support:
+ http://tools.ietf.org/html/draft-agl-tls-nextprotoneg-00
+
+EXPERIMENTAL: this patches uses extension and handshake numbers that are not
+assigned by IANA.
+
+This patch implements server and client side support. Additionally, it includes
+code that assumes the structure of the 'opaque' protocol strings in the draft.
+
+
+snap_start.patch
+
+Adds server-side support for Snap Start. This allows for 0-RTT handshakes in
+the case that the application protocol involves the client side speaking first.
+
+http://tools.ietf.org/html/draft-agl-tls-snapstart-00
+
+EXPERIMENTAL: this patches uses an extension number that is not assigned by
+IANA.