summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/include/ipxe/certstore.h
blob: 49b3b512c62934585a0f55aca5f45d4b422ed55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _IPXE_CERTSTORE_H
#define _IPXE_CERTSTORE_H

/** @file
 *
 * Certificate store
 *
 */

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );

#include <ipxe/asn1.h>
#include <ipxe/x509.h>

extern struct x509_chain certstore;

extern struct x509_certificate * certstore_find ( struct asn1_cursor *raw );
extern struct x509_certificate * certstore_find_key ( struct asn1_cursor *key );
extern void certstore_add ( struct x509_certificate *cert );

#endif /* _IPXE_CERTSTORE_H */