I am doing an LDAP query to get the distinguesd name of a User , DN contains Guid and SID sections and SID section is HEX but I need in SDDL , How can I convert a hex sid to SDDL format ?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You just can use SecurityIdentifier class.

link|improve this answer
How so ? I am getting sid in the form of this "<SID=010500000000000515000000a0607e5afa7af7a99aea8aaa4ea40000>" and I want to convert to sddl , I couldn't find how to do this in SecurityIdentifier class. – aziz Jul 8 '11 at 17:53
How do you get This ? SecurityIdentifier has a constructor with a byte array, and you can transform what you have into a byte array. – JPBlanc Jul 8 '11 at 18:11
Thanks , I convert this to byte array (every 2 char is a hex) and it worked. – aziz Jul 8 '11 at 22:07
feedback

Your Answer

 
or
required, but never shown

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