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

Side by Side Diff: net/third_party/nss/ssl/preenc.h

Issue 14522022: Update NSS libSSL to NSS_3_15_BETA2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Make the changes rsleevi suggested Created 7 years, 7 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
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil -*- */ 1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil -*- */
2 2
3 /* 3 /*
4 * Fortezza support is removed. 4 * Fortezza support is removed.
5 * 5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public 6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0. If a copy of the MPL was not distributed with this 7 * License, v. 2.0. If a copy of the MPL was not distributed with this
8 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 8 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 /* $Id: preenc.h,v 1.7 2012/04/25 14:50:12 gerv%gerv.net Exp $ */ 9 /* $Id$ */
10 10
11 /* Fortezza support is removed. 11 /* Fortezza support is removed.
12 * This file remains so that old programs will continue to compile, 12 * This file remains so that old programs will continue to compile,
13 * But this functionality is no longer supported or implemented. 13 * But this functionality is no longer supported or implemented.
14 */ 14 */
15 15
16 #include "seccomon.h" 16 #include "seccomon.h"
17 #include "prio.h" 17 #include "prio.h"
18 18
19 typedef struct PEHeaderStr PEHeader; 19 typedef struct PEHeaderStr PEHeader;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 #define PRE_FIXED_FILE 0x000f 105 #define PRE_FIXED_FILE 0x000f
106 #define PRE_RSA_FILE 0x001f 106 #define PRE_RSA_FILE 0x001f
107 #define PRE_FIXED_STREAM 0x0005 107 #define PRE_FIXED_STREAM 0x0005
108 108
109 PEHeader *SSL_PreencryptedStreamToFile(PRFileDesc *fd, PEHeader *, 109 PEHeader *SSL_PreencryptedStreamToFile(PRFileDesc *fd, PEHeader *,
110 int *headerSize); 110 int *headerSize);
111 111
112 PEHeader *SSL_PreencryptedFileToStream(PRFileDesc *fd, PEHeader *, 112 PEHeader *SSL_PreencryptedFileToStream(PRFileDesc *fd, PEHeader *,
113 int *headerSize); 113 int *headerSize);
114 114
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698