TRUSTED_DOMAIN_AUTH_INFORMATION 结构 (ntsecapi.h)

TRUSTED_DOMAIN_AUTH_INFORMATION 结构用于检索受信任域的身份验证信息。 LsaQueryTrustedDomainInfo 函数在其 InformationClass 参数设置为 TrustedDomainAuthInformation 时使用此结构。

语法

typedef struct _TRUSTED_DOMAIN_AUTH_INFORMATION {
  ULONG                 IncomingAuthInfos;
  PLSA_AUTH_INFORMATION IncomingAuthenticationInformation;
  PLSA_AUTH_INFORMATION IncomingPreviousAuthenticationInformation;
  ULONG                 OutgoingAuthInfos;
  PLSA_AUTH_INFORMATION OutgoingAuthenticationInformation;
  PLSA_AUTH_INFORMATION OutgoingPreviousAuthenticationInformation;
} TRUSTED_DOMAIN_AUTH_INFORMATION, *PTRUSTED_DOMAIN_AUTH_INFORMATION;

成员

IncomingAuthInfos

指定 IncomingAuthenticationInformationIncomingPreviousAuthenticationInformation 数组中的条目数。

IncomingAuthenticationInformation

指向包含信任关系传入方身份验证信息的 LSA_AUTH_INFORMATION 结构的数组的指针。

IncomingPreviousAuthenticationInformation

指向 LSA_AUTH_INFORMATION 结构的数组的指针,其中包含信任关系的传入方以前的身份验证信息 (或旧密码) 。 IncomingAuthenticationInformation 数组中的每个条目都必须有其中一个。

OutgoingAuthInfos

指定 OutgoingAuthenticationInformationOutgoingPreviousAuthenticationInformation 数组中的条目数。

OutgoingAuthenticationInformation

指向包含信任关系传出端身份验证信息的 LSA_AUTH_INFORMATION 结构的数组的指针。

OutgoingPreviousAuthenticationInformation

指向 LSA_AUTH_INFORMATION 结构的数组的指针,其中包含信任关系的传出方以前的身份验证信息 (或旧密码) 。 对于 OutgoingAuthenticationInformation 数组中的每个条目,必须有其中一个。

要求

要求
最低受支持的客户端 Windows XP [仅限桌面应用]
最低受支持的服务器 Windows Server 2003 [仅限桌面应用]
标头 ntsecapi.h

另请参阅

LSA_AUTH_INFORMATION

LsaCreateTrustedDomainEx

LsaQueryTrustedDomainInfo

LsaQueryTrustedDomainInfoByName

LsaSetTrustedDomainInfoByName

TRUSTED_INFORMATION_CLASS