| 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_revocationchecker.h | 5 * pkix_revocationchecker.h |
| 6 * | 6 * |
| 7 * RevocationChecker Object Type Definition | 7 * RevocationChecker Object Type Definition |
| 8 * | 8 * |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef _PKIX_REVOCATIONCHECKER_H | 11 #ifndef _PKIX_REVOCATIONCHECKER_H |
| 12 #define _PKIX_REVOCATIONCHECKER_H | 12 #define _PKIX_REVOCATIONCHECKER_H |
| 13 | 13 |
| 14 #include "pkixt.h" | 14 #include "pkixt.h" |
| 15 #include "certt.h" |
| 15 | 16 |
| 16 #ifdef __cplusplus | 17 #ifdef __cplusplus |
| 17 extern "C" { | 18 extern "C" { |
| 18 #endif | 19 #endif |
| 19 | 20 |
| 20 /* NOTE: nbio logistic removed. Will be replaced later. */ | 21 /* NOTE: nbio logistic removed. Will be replaced later. */ |
| 21 | 22 |
| 22 /* | 23 /* |
| 23 * All Flags are prefixed by CERT_REV_M_, where _M_ indicates | 24 * All Flags are prefixed by CERT_REV_M_, where _M_ indicates |
| 24 * this is a method dependent flag. | 25 * this is a method dependent flag. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 142 |
| 142 /* see source file for function documentation */ | 143 /* see source file for function documentation */ |
| 143 | 144 |
| 144 PKIX_Error *pkix_RevocationChecker_RegisterSelf(void *plContext); | 145 PKIX_Error *pkix_RevocationChecker_RegisterSelf(void *plContext); |
| 145 | 146 |
| 146 #ifdef __cplusplus | 147 #ifdef __cplusplus |
| 147 } | 148 } |
| 148 #endif | 149 #endif |
| 149 | 150 |
| 150 #endif /* _PKIX_REVOCATIONCHECKER_H */ | 151 #endif /* _PKIX_REVOCATIONCHECKER_H */ |
| OLD | NEW |