estrutura SID_IDENTIFIER_AUTHORITY (ntifs.h)

A estrutura SID_IDENTIFIER_AUTHORITY representa a autoridade de nível superior de um SID (identificador de segurança).

Sintaxe

typedef struct _SID_IDENTIFIER_AUTHORITY {
  UCHAR Value[6];
} SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;

Membros

Value[6]

Uma matriz de seis bytes especificando a autoridade de nível superior de um SID.

Comentários

O valor da autoridade de identificador identifica a agência que emitiu o SID. As seguintes autoridades de identificador são predefinidas.

Autoridade de Identificador Valor
SECURITY_NULL_SID_AUTHORITY 0
SECURITY_WORLD_SID_AUTHORITY 1
SECURITY_LOCAL_SID_AUTHORITY 2
SECURITY_CREATOR_SID_AUTHORITY 3
SECURITY_NON_UNIQUE_AUTHORITY 4
SECURITY_NT_AUTHORITY 5

Requisitos

Requisito Valor
Cabeçalho ntifs.h (inclua Ntifs.h)

Confira também

RtlInitializeSid

SID