// ntifs.h
typedef union _SE_SID {
SID Sid;
UCHAR Buffer[SECURITY_MAX_SID_SIZE];
} SE_SID, *PSE_SID;
View the official Windows Driver Kit DDI referenceNo description available.
The SE_SID union holds the maximum-sized valid Security Identifier (SID). The structure occupies 68-bytes and is suitable for stack allocation.
SidA security identifier structure used to uniquely identify users or groups.
BufferSpecifies an array of SECURITY_MAX_SID_SIZE for allocating enough memory for the largest possible SID size.