SID_AND_ATTRIBUTES_HASH structure (ntifs.h)

The SID_AND_ATTRIBUTES_HASH structure specifies a hash values for the specified array of security identifiers (SIDs).

Syntax

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;

Members

SidCount

The number of SIDs pointed to by the SidAttr parameter.

SidAttr

Pointer 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.

Requirements

Requirement Value
Minimum supported client Windows Vista
Header ntifs.h

See also

TOKEN_ACCESS_INFORMATION