2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-03-22 22:49:18 +00:00
Files
xNBA/src/include/ipxe/validator.h
Michael Brown 29dcb0631b [crypto] Add asynchronous certificate validator
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>
2012-05-08 12:49:01 +01:00

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 */