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

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

Issue 111853013: Update net/third_party/nss to NSS 3.15.4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Update the comment in sslenum.c for the two CHACHA20 cipher suites Created 6 years, 11 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 diff -pu a/nss/lib/ssl/ssl3ecc.c b/nss/lib/ssl/ssl3ecc.c
2 --- a/nss/lib/ssl/ssl3ecc.c 2013-07-31 12:07:10.964699464 -0700
3 +++ b/nss/lib/ssl/ssl3ecc.c 2013-07-31 14:10:54.313607174 -0700
4 @@ -32,6 +32,15 @@
5
6 #ifdef NSS_ENABLE_ECC
7
8 +/*
9 + * In NSS 3.13.2 the definition of the EC_POINT_FORM_UNCOMPRESSED macro
10 + * was moved from the internal header ec.h to the public header blapit.h.
11 + * Define the macro here when compiling against older system NSS headers.
12 + */
13 +#ifndef EC_POINT_FORM_UNCOMPRESSED
14 +#define EC_POINT_FORM_UNCOMPRESSED 0x04
15 +#endif
16 +
17 #ifndef PK11_SETATTRS
18 #define PK11_SETATTRS(x,id,v,l) (x)->type = (id); \
19 (x)->pValue=(v); (x)->ulValueLen = (l);
OLDNEW
« no previous file with comments | « net/third_party/nss/patches/disableticketrenewal.patch ('k') | net/third_party/nss/patches/fallbackscsv.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698