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 * pkix_pl_crldp.h | 5 * pkix_pl_crldp.h |
6 * | 6 * |
7 * Crp DP Object Definitions | 7 * Crp DP Object Definitions |
8 * | 8 * |
9 */ | 9 */ |
10 #include "pkix_pl_common.h" | 10 #include "pkix_pl_common.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 PKIX_Error * | 38 PKIX_Error * |
39 pkix_pl_CrlDp_RegisterSelf(void *plContext); | 39 pkix_pl_CrlDp_RegisterSelf(void *plContext); |
40 | 40 |
41 /* Parses CRLDistributionPoint structure and creaetes | 41 /* Parses CRLDistributionPoint structure and creaetes |
42 * pkix_pl_CrlDp object. */ | 42 * pkix_pl_CrlDp object. */ |
43 PKIX_Error * | 43 PKIX_Error * |
44 pkix_pl_CrlDp_Create(const CRLDistributionPoint *dp, | 44 pkix_pl_CrlDp_Create(const CRLDistributionPoint *dp, |
45 const CERTName *certIssuerName, | 45 const CERTName *certIssuerName, |
46 pkix_pl_CrlDp **pPkixDP, | 46 pkix_pl_CrlDp **pPkixDP, |
47 void *plContext); | 47 void *plContext); |
| 48 |
| 49 #ifdef __cplusplus |
| 50 } |
| 51 #endif |
| 52 |
48 #endif /* _PKIX_PL_CRLDP_H */ | 53 #endif /* _PKIX_PL_CRLDP_H */ |
OLD | NEW |