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

Unified Diff: net/third_party/nss/patches/paddingextensionall.patch

Issue 62443004: net: add padding extension to all handshakes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/third_party/nss/patches/applypatches.sh ('k') | net/third_party/nss/ssl/ssl3ext.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/nss/patches/paddingextensionall.patch
diff --git a/net/third_party/nss/patches/paddingextensionall.patch b/net/third_party/nss/patches/paddingextensionall.patch
new file mode 100644
index 0000000000000000000000000000000000000000..f226aacaf687abb1a832bb70eee64895f6625ce1
--- /dev/null
+++ b/net/third_party/nss/patches/paddingextensionall.patch
@@ -0,0 +1,26 @@
+diff --git a/nss/lib/ssl/ssl3ext.c b/nss/lib/ssl/ssl3ext.c
+index cdebcc9..03cf05c 100644
+--- a/nss/lib/ssl/ssl3ext.c
++++ b/nss/lib/ssl/ssl3ext.c
+@@ -2306,7 +2306,11 @@ ssl3_CalculatePaddingExtensionLength(unsigned int clientHelloLength)
+ clientHelloLength;
+ unsigned int extensionLength;
+
+- if (recordLength < 256 || recordLength >= 512) {
++ /* This condition should be:
++ * if (recordLength < 256 || recordLength >= 512) {
++ * It has been changed, temporarily, to test whether 512 byte ClientHellos
++ * are a compatibility problem. */
++ if (recordLength >= 512) {
+ return 0;
+ }
+
+@@ -2327,7 +2331,7 @@ ssl3_AppendPaddingExtension(sslSocket *ss, unsigned int extensionLen,
+ PRUint32 maxBytes)
+ {
+ unsigned int paddingLen = extensionLen - 4;
+- unsigned char padding[256];
++ unsigned char padding[512];
+
+ if (extensionLen == 0) {
+ return 0;
« no previous file with comments | « net/third_party/nss/patches/applypatches.sh ('k') | net/third_party/nss/ssl/ssl3ext.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698