struttura TRUSTED_PASSWORD_INFO (ntsecapi.h)

La struttura TRUSTED_PASSWORD_INFO viene usata per eseguire query o impostare la password per un dominio attendibile. Le funzioni LsaQueryTrustedDomainInfo e LsaSetTrustedDomainInformation usano questa struttura quando i parametri InformationClass sono impostati su TrustedPasswordInformation.

Sintassi

typedef struct _TRUSTED_PASSWORD_INFO {
  LSA_UNICODE_STRING Password;
  LSA_UNICODE_STRING OldPassword;
} TRUSTED_PASSWORD_INFO, *PTRUSTED_PASSWORD_INFO;

Members

Password

Struttura LSA_UNICODE_STRING che contiene la password da usare durante la creazione di una connessione autenticata al dominio.

OldPassword

Struttura LSA_UNICODE_STRING che contiene la vecchia password. Nelle operazioni impostate, se il membro Buffer di questa struttura è NULL, la password precedente viene impostata sulla password corrente.

Commenti

Al termine dell'uso della struttura TRUSTED_PASSWORD_INFO , cancellare le informazioni riservate dalla memoria chiamando la funzione SecureZeroMemory . Per altre informazioni sulla protezione delle password, vedere Gestione delle password.

Requisiti

Requisito Valore
Client minimo supportato Windows XP [solo app desktop]
Server minimo supportato Windows Server 2003 [solo app desktop]
Intestazione ntsecapi.h

Vedi anche

LSA_UNICODE_STRING

LsaQueryTrustedDomainInfo

LsaSetTrustedDomainInformation

TRUSTED_INFORMATION_CLASS