OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 /* | 5 /* |
6 * Support routines for CMS implementation, none of which are exported. | 6 * Support routines for CMS implementation, none of which are exported. |
7 * | 7 * |
8 * Do not export this file! If something in here is really needed outside | 8 * Do not export this file! If something in here is really needed outside |
9 * of smime code, first try to add a CMS interface which will do it for | 9 * of smime code, first try to add a CMS interface which will do it for |
10 * you. If that has a problem, then just move out what you need, changing | 10 * you. If that has a problem, then just move out what you need, changing |
11 * its name as appropriate! | 11 * its name as appropriate! |
12 * | |
13 * $Id$ | |
14 */ | 12 */ |
15 | 13 |
16 #ifndef _CMSLOCAL_H_ | 14 #ifndef _CMSLOCAL_H_ |
17 #define _CMSLOCAL_H_ | 15 #define _CMSLOCAL_H_ |
18 | 16 |
19 #include "cms.h" | 17 #include "cms.h" |
20 #include "cmsreclist.h" | 18 #include "cmsreclist.h" |
21 #include "secasn1t.h" | 19 #include "secasn1t.h" |
22 | 20 |
23 extern const SEC_ASN1Template NSSCMSContentInfoTemplate[]; | 21 extern const SEC_ASN1Template NSSCMSContentInfoTemplate[]; |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 SECStatus NSS_CMSGenericWrapperData_Encode_BeforeStart(SECOidTag type, | 344 SECStatus NSS_CMSGenericWrapperData_Encode_BeforeStart(SECOidTag type, |
347 NSSCMSGenericWrapperData *gd); | 345 NSSCMSGenericWrapperData *gd); |
348 SECStatus NSS_CMSGenericWrapperData_Encode_BeforeData(SECOidTag type, | 346 SECStatus NSS_CMSGenericWrapperData_Encode_BeforeData(SECOidTag type, |
349 NSSCMSGenericWrapperData *gd); | 347 NSSCMSGenericWrapperData *gd); |
350 SECStatus NSS_CMSGenericWrapperData_Encode_AfterData(SECOidTag type, | 348 SECStatus NSS_CMSGenericWrapperData_Encode_AfterData(SECOidTag type, |
351 NSSCMSGenericWrapperData *gd); | 349 NSSCMSGenericWrapperData *gd); |
352 | 350 |
353 SEC_END_PROTOS | 351 SEC_END_PROTOS |
354 | 352 |
355 #endif /* _CMSLOCAL_H_ */ | 353 #endif /* _CMSLOCAL_H_ */ |
OLD | NEW |