mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-05-11 01:59:14 +00:00

This is the first stage of porting the MokManager UI to the UI code used by the Linux Foundation UEFI loader.
19 lines
484 B
C
19 lines
484 B
C
#include <efi.h>
|
|
|
|
#ifndef BUILD_EFI
|
|
const char *guid_to_str(EFI_GUID *guid);
|
|
void str_to_guid(const char *str, EFI_GUID *guid);
|
|
#endif
|
|
|
|
extern EFI_GUID GV_GUID;
|
|
extern EFI_GUID SIG_DB;
|
|
extern EFI_GUID X509_GUID;
|
|
extern EFI_GUID RSA2048_GUID;
|
|
extern EFI_GUID PKCS7_GUID;
|
|
extern EFI_GUID IMAGE_PROTOCOL;
|
|
extern EFI_GUID SIMPLE_FS_PROTOCOL;
|
|
extern EFI_GUID EFI_CERT_SHA256_GUID;
|
|
extern EFI_GUID MOK_OWNER;
|
|
extern EFI_GUID SECURITY_PROTOCOL_GUID;
|
|
extern EFI_GUID SECURITY2_PROTOCOL_GUID;
|