| 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 | 9 |
| 10 #ifndef _SECMIME_H_ | 10 #ifndef _SMIME_H_ |
| 11 #define _SECMIME_H_ 1 | 11 #define _SMIME_H_ 1 |
| 12 | 12 |
| 13 #include "cms.h" | 13 #include "cms.h" |
| 14 | 14 |
| 15 | 15 |
| 16 /************************************************************************/ | 16 /************************************************************************/ |
| 17 SEC_BEGIN_PROTOS | 17 SEC_BEGIN_PROTOS |
| 18 | 18 |
| 19 /* | 19 /* |
| 20 * Initialize the local recording of the user S/MIME cipher preferences. | 20 * Initialize the local recording of the user S/MIME cipher preferences. |
| 21 * This function is called once for each cipher, the order being | 21 * This function is called once for each cipher, the order being |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 /* | 130 /* |
| 131 * Returns a const string of the S/MIME library version. | 131 * Returns a const string of the S/MIME library version. |
| 132 */ | 132 */ |
| 133 extern const char *NSSSMIME_GetVersion(void); | 133 extern const char *NSSSMIME_GetVersion(void); |
| 134 | 134 |
| 135 /************************************************************************/ | 135 /************************************************************************/ |
| 136 SEC_END_PROTOS | 136 SEC_END_PROTOS |
| 137 | 137 |
| 138 #endif /* _SECMIME_H_ */ | 138 #endif /* _SECMIME_H_ */ |
| OLD | NEW |