|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
EqualPrefixSid
The EqualPrefixSid function tests two security-identifier (SID) prefix values for equality. A SID prefix is the entire SID except for the last subauthority value.
BOOL EqualPrefixSid(
PSID pSid1, // pointer to first SID to compare PSID pSid2 // pointer to second SID to compare );
Parameters
pSid1
Points to the first SID structure to compare. This structure is assumed to be valid.
pSid2
Points to the second SID structure to compare. It also is assumed to be valid.
Return Values
If the SID prefixes are equal, the return value is nonzero. If the SID prefixes are not equal, the return value is zero. To get extended error information, call GetLastError.
Remarks
The EqualPrefixSid function enables a server application in one domain to verify an attempt by a user to log on to another domain. For example, if a user attempts to log on to RemoteDomain from a workstation in LocalDomain, the server for LocalDomain can request the SIDs for the user and the user's groups from RemoteDomain. The domain controller for RemoteDomain responds with the relevant SIDs. All SIDs for a specified domain necessarily have the same prefix. When the server receives the user's SIDs, it can call the EqualPrefixSid function for each SID, comparing the user or group SID against the SID for RemoteDomain. If any of the SID prefixes are not equal, the server refuses the logon attempt.
It is advisable to modify the SID for a domain before comparing it with a group or user SID. If the SID for RemoteDomain is S-1-1234-8, each group or user SID for that domain will have S-1-1234-8 as its prefix. To compare the SIDs by using the EqualPrefixSid function, an application copies the domain SID and adds any subauthority (RID) value to the copy, thereby creating a SID in the form S-1-1234-8-0. The application then uses the modified domain SID as a template against which the group and user SIDs are compared.
See Also
CopySid, EqualSid, IsValidSid, SID
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
EqualPrefixSid
Функция EqualPrefixSid тестирует две безопасности-идентификатора (SID) префиксных величин для равенства. Префикс SID - целый SID за исключением последней величины subauthority.
BOOL EqualPrefixSid(
PSID pSid1, // УКАЗАТЕЛЬ на сначала SID, чтобы сравнивать указатель PSID pSid2 // с секундой SID, чтобы сравниваться );
Параметры
pSid1
Точки на первую структуру SID, чтобы сравниваться. Эта структура принята, чтобы быть в силе.
pSid2
Точки на вторую структуру SID, чтобы сравниваться. Это также принято, чтобы быть в силе.
Обратные Величины
Если префиксы SID равные, обратная величина ненулевая. Если префиксы SID не равные, обратная величина нулевая. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
Функция EqualPrefixSid приспосабливается приложение сервера в одной области, чтобы проверять попытку пользователем, чтобы регистрироваться в другой области. Например, если пользователь пытается регистрироваться в RemoteDomain с рабочей станции в LocalDomain, сервер для LocalDomain может запросить SIDs для пользователя и группы пользователя из RemoteDomain. Доменный диспетчер для RemoteDomain указывает важный SIDs. Все SIDs для определенной области обязательно иметь тот же префикс. Когда сервер получает пользователя SIDs, он может призвать функцию EqualPrefixSid к каждый SID, сравнивающую пользователя или группа SID против SID для RemoteDomain. Если любой из префиксов SID не равные, сервер отклоняет попытку ввода.
Это желательно должно модифицировать SID для области перед сравнением это с группой или пользователем SID. Если SID для RemoteDomain - S-1-1234-8, каждая группа или пользователь SID для этой области будет иметь S-1-1234-8 как префикс. Для того, чтобы сравнивать SIDs используя функцию EqualPrefixSid, приложение копирует область SID и добавляет любой subauthority величины (ОСВОБОДИТЕ) в копию, этим самым создавая SID в форме S-1-1234-8-0. Приложение затем использует модифицировать область SID как шаблон против которого группа и пользователь SIDs сравнен.
Смотри Также
CopySid, EqualSid, IsValidSid, SID
|
|
|
|
| |