|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| advapi32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
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
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|