mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-22 22:49:18 +00:00
To allow for automatic download of cross-signing certificates and for OCSP, the validation of certificates must be an asynchronous process. Create a stub validator which uses a job-control interface to report the result of certificate validation. Signed-off-by: Michael Brown <mcb30@ipxe.org>
18 lines
297 B
C
18 lines
297 B
C
#ifndef _IPXE_VALIDATOR_H
|
|
#define _IPXE_VALIDATOR_H
|
|
|
|
/** @file
|
|
*
|
|
* Certificate validator
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <ipxe/interface.h>
|
|
#include <ipxe/x509.h>
|
|
|
|
extern int create_validator ( struct interface *job, struct x509_chain *chain );
|
|
|
|
#endif /* _IPXE_VALIDATOR_H */
|