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 "secpkcs7.h" | 13 #include "secpkcs7.h" |
16 | 14 |
17 | 15 |
18 /************************************************************************/ | 16 /************************************************************************/ |
19 SEC_BEGIN_PROTOS | 17 SEC_BEGIN_PROTOS |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 CERTCertDBHandle *certdb, | 152 CERTCertDBHandle *certdb, |
155 SECOidTag digestalg, | 153 SECOidTag digestalg, |
156 SECItem *digest, | 154 SECItem *digest, |
157 SECKEYGetPasswordKey pwfn, | 155 SECKEYGetPasswordKey pwfn, |
158 void *pwfn_arg); | 156 void *pwfn_arg); |
159 | 157 |
160 /************************************************************************/ | 158 /************************************************************************/ |
161 SEC_END_PROTOS | 159 SEC_END_PROTOS |
162 | 160 |
163 #endif /* _SECMIME_H_ */ | 161 #endif /* _SECMIME_H_ */ |
OLD | NEW |