// ntifs.h
typedef struct _SID_AND_ATTRIBUTES_HASH {
ULONG SidCount;
PSID_AND_ATTRIBUTES SidAttr;
SID_HASH_ENTRY Hash[SID_HASH_SIZE];
} SID_AND_ATTRIBUTES_HASH, *PSID_AND_ATTRIBUTES_HASH;
View the official Windows Driver Kit DDI referenceNo description available.
The SID_AND_ATTRIBUTES_HASH structure specifies a hash values for the specified array of security identifiers (SIDs).
SidCountThe number of SIDs pointed to by the SidAttr parameter.
SidAttrPointer to an array of SID_AND_ATTRIBUTES structures that represent SIDs and their attributes.
Hash[SID_HASH_SIZE]Array of pointers to hash values. These values correspond to the SID_AND_ATTRIBUTES structures pointed to by the SidAttr parameter.
The SID_HASH_ENTRY data type is defined in ntifs.h as a ULONG_PTR.
The SID_HASH_SIZE array dimension is defined in ntifs.h as 32.