andre@0: /* This Source Code Form is subject to the terms of the Mozilla Public andre@0: * License, v. 2.0. If a copy of the MPL was not distributed with this andre@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ andre@0: /* andre@0: * pkix_validate.h andre@0: * andre@0: * Header file for validateChain function andre@0: * andre@0: */ andre@0: andre@0: #ifndef _PKIX_VALIDATE_H andre@0: #define _PKIX_VALIDATE_H andre@0: #include "pkix_tools.h" andre@0: andre@0: #ifdef __cplusplus andre@0: extern "C" { andre@0: #endif andre@0: andre@0: PKIX_Error * andre@0: pkix_CheckChain( andre@0: PKIX_List *certs, andre@0: PKIX_UInt32 numCerts, andre@0: PKIX_TrustAnchor *anchor, andre@0: PKIX_List *checkers, andre@0: PKIX_RevocationChecker *revChecker, andre@0: PKIX_List *buildCheckedExtOIDs, andre@0: PKIX_ProcessingParams *procParams, andre@0: PKIX_UInt32 *pCertCheckedIndex, andre@0: PKIX_UInt32 *pCheckerIndex, andre@0: PKIX_Boolean *pRevChecking, andre@0: PKIX_UInt32 *pReasonCode, andre@0: void **pNBIOContext, andre@0: PKIX_PL_PublicKey **pFinalSubjPubKey, andre@0: PKIX_PolicyNode **pPolicyTree, andre@0: PKIX_VerifyNode **pVerifyTree, andre@0: void *plContext); andre@0: andre@0: #ifdef __cplusplus andre@0: } andre@0: #endif andre@0: andre@0: #endif /* _PKIX_VALIDATE_H */