I'm building Active Directory Authentication into my application and I am planning to link my application's internal accounts to a user's domain SID. It is easier for me to work with the string format of the sid than a byte array so I was planning to store it in the database as a string. How long should I make the field to ensure SID's will not get truncated?
|
|
I had the same question, and I believe the right answer is: SID as string: 184 characters, or varchar(184) in SQL Server SID as string of Hex digits: 136 characters, or varchar(136) in SQL Server SID as binary: 68 bytes, or varbinary(68) in SQL Server I haven't checked the math myself, but the technique used here looks valid: http://www.secnewsgroups.net/group/microsoft.public.dotnet.security/topic10882.aspx Refer to the program written by Russell Mangel on Aug 19, 2006, also copied here for reference:
|
||
|
|
|
|
There isn't a maximum length of a SID in SDDL format. String-format SIDs follow the format described here. That simply says "variable number of subauthority or... values". In other words, SIDs in string format (or binary) can be arbitrarily long. |
||||
|
