// ntifs.h
NTSTATUS SeQueryAuthenticationIdToken(
[in] PACCESS_TOKEN Token,
[out] PLUID AuthenticationId
);
View the official Windows Driver Kit DDI reference
No description available.
The SeQueryAuthenticationIdToken routine retrieves the authentication ID of an access token.
Token
[in]Pointer to an access token.
AuthenticationId
[out]Authentication ID of the access token. (An Authentication ID is the locally unique identifier, or LUID, that is assigned to the logon session that the access token represents. There can be many tokens representing a single logon session.)
Return code | Description |
---|---|
STATUS_SUCCESS | The call to SeQueryAuthenticationIdToken succeeded. |
For more information about security and access control, see Windows security model for driver developers and the documentation on these topics in the Windows SDK.
PsDereferenceImpersonationToken