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

Unified Diff: net/third_party/nss/ssl/ssl3ext.c

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/paddingextensionall.patch ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/nss/ssl/ssl3ext.c
diff --git a/net/third_party/nss/ssl/ssl3ext.c b/net/third_party/nss/ssl/ssl3ext.c
index cdebcc9a42abb46628289af280cef98efb13b9e9..03cf05c7393c7ceb4bd3bea2792d1f8941a28d4e 100644
--- a/net/third_party/nss/ssl/ssl3ext.c
+++ b/net/third_party/nss/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/paddingextensionall.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698