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 * | |
9 * $Id$ | |
10 */ | 8 */ |
11 | 9 |
12 #ifndef _SECMIME_H_ | 10 #ifndef _SECMIME_H_ |
13 #define _SECMIME_H_ 1 | 11 #define _SECMIME_H_ 1 |
14 | 12 |
15 #include "cms.h" | 13 #include "cms.h" |
16 | 14 |
17 | 15 |
18 /************************************************************************/ | 16 /************************************************************************/ |
19 SEC_BEGIN_PROTOS | 17 SEC_BEGIN_PROTOS |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 129 |
132 /* | 130 /* |
133 * Returns a const string of the S/MIME library version. | 131 * Returns a const string of the S/MIME library version. |
134 */ | 132 */ |
135 extern const char *NSSSMIME_GetVersion(void); | 133 extern const char *NSSSMIME_GetVersion(void); |
136 | 134 |
137 /************************************************************************/ | 135 /************************************************************************/ |
138 SEC_END_PROTOS | 136 SEC_END_PROTOS |
139 | 137 |
140 #endif /* _SECMIME_H_ */ | 138 #endif /* _SECMIME_H_ */ |
OLD | NEW |