SYSTEM_CODE_INTEGRITY_POLICY_HEADER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTEXAPI_H

// rev
typedef struct _SYSTEM_CODE_INTEGRITY_POLICY_HEADER
{
    UCHAR Magic[4];                    // "WDAC"
    ULONG Version;                     // Policy version/format number
    ULONG TypeAndOptions;              // Policy type flags and options
    ULONG TimestampLow;                // Creation/modification timestamp (low)
    ULONG TimestampHigh;               // Creation/modification timestamp (high)
    UCHAR Hash[32];                    // SHA-256 policy hash/identifier
} SYSTEM_CODE_INTEGRITY_POLICY_HEADER, *PSYSTEM_CODE_INTEGRITY_POLICY_HEADER;

#endif

View code on GitHub

NtDoc

No description available.