You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pem.h 388B

12345678910111213141516171819202122
  1. #ifndef _IPXE_PEM_H
  2. #define _IPXE_PEM_H
  3. /** @file
  4. *
  5. * PEM image format
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #include <ipxe/image.h>
  10. /** Pre-encapsulation boundary marker */
  11. #define PEM_BEGIN "-----BEGIN"
  12. /** Post-encapsulation boundary marker */
  13. #define PEM_END "-----END"
  14. extern struct image_type pem_image_type __image_type ( PROBE_NORMAL );
  15. #endif /* _IPXE_PEM_H */