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_procparams.h | 5 * pkix_procparams.h |
6 * | 6 * |
7 * ProcessingParams Object Type Definition | 7 * ProcessingParams Object Type Definition |
8 * | 8 * |
9 */ | 9 */ |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 PKIX_Boolean initialExplicitPolicy; | 29 PKIX_Boolean initialExplicitPolicy; |
30 PKIX_Boolean qualifiersRejected; | 30 PKIX_Boolean qualifiersRejected; |
31 PKIX_List *certChainCheckers; | 31 PKIX_List *certChainCheckers; |
32 PKIX_List *certStores; | 32 PKIX_List *certStores; |
33 PKIX_Boolean isCrlRevocationCheckingEnabled; | 33 PKIX_Boolean isCrlRevocationCheckingEnabled; |
34 PKIX_Boolean isCrlRevocationCheckingEnabledWithNISTPolicy; | 34 PKIX_Boolean isCrlRevocationCheckingEnabledWithNISTPolicy; |
35 PKIX_RevocationChecker *revChecker; | 35 PKIX_RevocationChecker *revChecker; |
36 PKIX_ResourceLimits *resourceLimits; | 36 PKIX_ResourceLimits *resourceLimits; |
37 PKIX_Boolean useAIAForCertFetching; | 37 PKIX_Boolean useAIAForCertFetching; |
38 PKIX_Boolean qualifyTargetCert; | 38 PKIX_Boolean qualifyTargetCert; |
| 39 PKIX_Boolean useOnlyTrustAnchors; |
39 }; | 40 }; |
40 | 41 |
41 /* see source file for function documentation */ | 42 /* see source file for function documentation */ |
42 | 43 |
43 PKIX_Error *pkix_ProcessingParams_RegisterSelf(void *plContext); | 44 PKIX_Error *pkix_ProcessingParams_RegisterSelf(void *plContext); |
44 | 45 |
45 #ifdef __cplusplus | 46 #ifdef __cplusplus |
46 } | 47 } |
47 #endif | 48 #endif |
48 | 49 |
49 #endif /* _PKIX_PROCESSINGPARAMS_H */ | 50 #endif /* _PKIX_PROCESSINGPARAMS_H */ |
OLD | NEW |