Can I compare 2 string-format SIDs for equality?

As per my understanding, a Group SID is a unique identifier in an Active Directory forest, so the string that I get by using ConvertSidToStringSid will also be unique and can thus be compared to any other Group SID (string format) by using string comparison functions?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

AFAIK the answer is "yes as long as you're using case insensitive comparison".

However, if I were you I'd consider using the EqualSid API to compare them as binary, and only convert them to string to show to the end user of your software.

link|improve this answer
1  
Many thanks for reply. I really appreciate your cooperation. – picrodevosio Apr 20 '11 at 12:24
You're welcome. – Soonts May 16 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.