mirror of https://github.com/ipxe/ipxe.git
22 lines
393 B
C
22 lines
393 B
C
#ifndef _IPXE_DER_H
|
|
#define _IPXE_DER_H
|
|
|
|
/** @file
|
|
*
|
|
* DER image format
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
|
|
#include <stdint.h>
|
|
#include <ipxe/asn1.h>
|
|
#include <ipxe/image.h>
|
|
|
|
extern int der_asn1 ( userptr_t data, size_t len, size_t offset,
|
|
struct asn1_cursor **cursor );
|
|
|
|
extern struct image_type der_image_type __image_type ( PROBE_NORMAL );
|
|
|
|
#endif /* _IPXE_DER_H */
|