Blame nss/lib/libpkix/pkix/checker/pkix_namechainingchecker.h

Packit 40b132
/* This Source Code Form is subject to the terms of the Mozilla Public
Packit 40b132
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit 40b132
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Packit 40b132
/*
Packit 40b132
 * pkix_namechainingchecker.h
Packit 40b132
 *
Packit 40b132
 * Header file for name chaining checker.
Packit 40b132
 *
Packit 40b132
 */
Packit 40b132
Packit 40b132
#ifndef _PKIX_NAMECHAININGCHECKER_H
Packit 40b132
#define _PKIX_NAMECHAININGCHECKER_H
Packit 40b132
Packit 40b132
#include "pkix_tools.h"
Packit 40b132
Packit 40b132
#ifdef __cplusplus
Packit 40b132
extern "C" {
Packit 40b132
#endif
Packit 40b132
Packit 40b132
PKIX_Error *
Packit 40b132
pkix_NameChainingChecker_Initialize(
Packit 40b132
        PKIX_PL_X500Name *trustedCAName,
Packit 40b132
        PKIX_CertChainChecker **pChecker,
Packit 40b132
        void *plContext);
Packit 40b132
Packit 40b132
#ifdef __cplusplus
Packit 40b132
}
Packit 40b132
#endif
Packit 40b132
Packit 40b132
#endif /* _PKIX_NAMECHAININGCHECKER_H */