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_verifynode.h andre@0: * andre@0: * VerifyNode Type Definitions andre@0: * andre@0: */ andre@0: andre@0: #ifndef _PKIX_VERIFYNODE_H andre@0: #define _PKIX_VERIFYNODE_H andre@0: andre@0: #include "pkix_tools.h" andre@0: andre@0: #ifdef __cplusplus andre@0: extern "C" { andre@0: #endif andre@0: andre@0: /* This structure reflects the contents of a verify node... andre@0: */ andre@0: struct PKIX_VerifyNodeStruct { andre@0: PKIX_PL_Cert *verifyCert; andre@0: PKIX_List *children; /* VerifyNodes */ andre@0: PKIX_UInt32 depth; andre@0: PKIX_Error *error; andre@0: }; andre@0: andre@0: PKIX_Error * andre@0: pkix_SingleVerifyNode_ToString( andre@0: PKIX_VerifyNode *node, andre@0: PKIX_PL_String **pString, andre@0: void *plContext); andre@0: andre@0: PKIX_Error * andre@0: pkix_VerifyNode_Create( andre@0: PKIX_PL_Cert *verifyCert, andre@0: PKIX_UInt32 depth, andre@0: PKIX_Error *error, andre@0: PKIX_VerifyNode **pObject, andre@0: void *plContext); andre@0: andre@0: PKIX_Error * andre@0: pkix_VerifyNode_AddToChain( andre@0: PKIX_VerifyNode *parentNode, andre@0: PKIX_VerifyNode *child, andre@0: void *plContext); andre@0: andre@0: PKIX_Error * andre@0: pkix_VerifyNode_AddToTree( andre@0: PKIX_VerifyNode *parentNode, andre@0: PKIX_VerifyNode *child, andre@0: void *plContext); andre@0: andre@0: PKIX_Error * andre@0: pkix_VerifyNode_SetError( andre@0: PKIX_VerifyNode *node, andre@0: PKIX_Error *error, andre@0: void *plContext); andre@0: andre@0: PKIX_Error * andre@0: pkix_VerifyNode_RegisterSelf( andre@0: void *plContext); andre@0: andre@0: PKIX_Error * andre@0: pkix_VerifyNode_FindError( andre@0: PKIX_VerifyNode *node, andre@0: PKIX_Error **error, andre@0: void *plContext); andre@0: andre@0: #ifdef __cplusplus andre@0: } andre@0: #endif andre@0: andre@0: #endif /* _PKIX_VERIFYNODE_H */