OLD | NEW |
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 Loading... |
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 |
OLD | NEW |