estructura SID_IDENTIFIER_AUTHORITY (winnt.h)

La estructura de SID_IDENTIFIER_AUTHORITY representa la autoridad de nivel superior de un identificador de seguridad (SID).

Sintaxis

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

Miembros

Value[6]

Matriz de 6 bytes que especifica la autoridad de nivel superior de un SID.

Comentarios

El valor de autoridad de identificador identifica la agencia que emitió el SID. Las siguientes entidades de identificador están predefinidas.

Entidad 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
SECURITY_RESOURCE_MANAGER_AUTHORITY 9
 

Un SID debe contener una autoridad de nivel superior y al menos un valor de identificador relativo (RID).

Requisitos

   
Cliente mínimo compatible Windows XP [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2003 [solo aplicaciones de escritorio]
Encabezado winnt.h (incluya Windows.h)

Consulte también

AllocateAndInitializeSid

GetSidIdentifierAuthority

InitializeSid

SID