| 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 * Header file for routines specific to S/MIME. Keep things that are pure | 6 * Header file for routines specific to S/MIME. Keep things that are pure |
| 7 * pkcs7 out of here; this is for S/MIME policy, S/MIME interoperability, etc. | 7 * pkcs7 out of here; this is for S/MIME policy, S/MIME interoperability, etc. |
| 8 * | 8 * |
| 9 * $Id: smime.h,v 1.13 2012/09/21 21:58:44 wtc%google.com Exp $ | 9 * $Id: smime.h,v 1.12 2012/04/25 14:50:09 gerv%gerv.net Exp $ |
| 10 */ | 10 */ |
| 11 | 11 |
| 12 #ifndef _SECMIME_H_ | 12 #ifndef _SECMIME_H_ |
| 13 #define _SECMIME_H_ 1 | 13 #define _SECMIME_H_ 1 |
| 14 | 14 |
| 15 #include "cms.h" | 15 #include "cms.h" |
| 16 | 16 |
| 17 | 17 |
| 18 /************************************************************************/ | 18 /************************************************************************/ |
| 19 SEC_BEGIN_PROTOS | 19 SEC_BEGIN_PROTOS |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 132 |
| 133 /* | 133 /* |
| 134 * Returns a const string of the S/MIME library version. | 134 * Returns a const string of the S/MIME library version. |
| 135 */ | 135 */ |
| 136 extern const char *NSSSMIME_GetVersion(void); | 136 extern const char *NSSSMIME_GetVersion(void); |
| 137 | 137 |
| 138 /************************************************************************/ | 138 /************************************************************************/ |
| 139 SEC_END_PROTOS | 139 SEC_END_PROTOS |
| 140 | 140 |
| 141 #endif /* _SECMIME_H_ */ | 141 #endif /* _SECMIME_H_ */ |
| OLD | NEW |