blob: 1276f94ad58c7ba6979d0044cfbcdcb1151bed59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _IPXE_PEM_H
#define _IPXE_PEM_H
/** @file
*
* PEM image format
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/image.h>
/** Pre-encapsulation boundary marker */
#define PEM_BEGIN "-----BEGIN"
/** Post-encapsulation boundary marker */
#define PEM_END "-----END"
extern struct image_type pem_image_type __image_type ( PROBE_NORMAL );
#endif /* _IPXE_PEM_H */
|