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

Side by Side Diff: net/third_party/nss/patches/suitebonly.patch

Issue 1511123006: Uprev NSS (in libssl) to NSS 3.21 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated deps Created 5 years 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 unified diff | Download patch
OLDNEW
1 diff --git a/ssl/ssl3ecc.c b/ssl/ssl3ecc.c 1 diff --git a/lib/ssl/ssl3ecc.c b/lib/ssl/ssl3ecc.c
2 index aca2b74..dac7a9e 100644 2 index 94008a0..6d89bbe 100644
3 --- a/ssl/ssl3ecc.c 3 --- a/lib/ssl/ssl3ecc.c
4 +++ b/ssl/ssl3ecc.c 4 +++ b/lib/ssl/ssl3ecc.c
5 @@ -1090,6 +1090,7 @@ static const PRUint8 ecPtFmt[6] = { 5 @@ -1093,6 +1093,7 @@ static const PRUint8 ecPtFmt[6] = {
6 static PRBool 6 static PRBool
7 ssl3_SuiteBOnly(sslSocket *ss) 7 ssl3_SuiteBOnly(sslSocket *ss)
8 { 8 {
9 +#if 0 9 +#if 0
10 /* See if we can support small curves (like 163). If not, assume we can 10 /* See if we can support small curves (like 163). If not, assume we can
11 * only support Suite-B curves (P-256, P-384, P-521). */ 11 * only support Suite-B curves (P-256, P-384, P-521). */
12 PK11SlotInfo *slot = 12 PK11SlotInfo *slot =
13 @@ -1103,6 +1104,9 @@ ssl3_SuiteBOnly(sslSocket *ss) 13 @@ -1106,6 +1107,9 @@ ssl3_SuiteBOnly(sslSocket *ss)
14 /* we can, presume we can do all curves */ 14 /* we can, presume we can do all curves */
15 PK11_FreeSlot(slot); 15 PK11_FreeSlot(slot);
16 return PR_FALSE; 16 return PR_FALSE;
17 +#else 17 +#else
18 + return PR_TRUE; 18 + return PR_TRUE;
19 +#endif 19 +#endif
20 } 20 }
21 21
22 /* Send our "canned" (precompiled) Supported Elliptic Curves extension, 22 /* Send our "canned" (precompiled) Supported Elliptic Curves extension,
OLDNEW
« no previous file with comments | « net/third_party/nss/patches/signedcertificatetimestamps.patch ('k') | net/third_party/nss/patches/tls12chromium.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698