Enum lief::pe::enclave_configuration::Type
pub enum Type {
NONE,
UNIQUE_ID,
AUTHOR_ID,
FAMILY_ID,
IMAGE_ID,
UNKNOWN(u32),
}
Variants§
NONE
None of the identifiers of the image need to match the value in the import record.
UNIQUE_ID
The value of the enclave unique identifier of the image must match the value in the import record. Otherwise, loading of the image fails.
AUTHOR_ID
The value of the enclave author identifier of the image must match the value in the import record. Otherwise, loading of the image fails. If this flag is set and the import record indicates an author identifier of all zeros, the imported image must be part of the Windows installation.
FAMILY_ID
The value of the enclave family identifier of the image must match the value in the import record. Otherwise, loading of the image fails.
IMAGE_ID
The value of the enclave image identifier of the image must match the value in the import record. Otherwise, loading of the image fails.