Property | Type | Description | |
---|---|---|---|
$identifierAuthority | The value that indicates the authority under which the SID was created. | ||
$revisionLevel | The revision level of the SID. | ||
$subAuthorities | Sub-authority values that uniquely identify a principal relative to the identifier authority. |
Method | Description | |
---|---|---|
__construct ( string $sid ) | ||
__toString ( ) : string | ||
getIdentifierAuthority ( ) : integer | Get the value that indicates the authority under which the SID was created. | |
getRevisionLevel ( ) : integer | Get the revision level of the SID. | |
getShortName ( ) : string | null | Get the SDDL short name for the SID, if it has one. If it does not this will return null. | |
getSubAuthorities ( ) : int[] | Get the array of sub-authority values that uniquely identify a principal relative to the identifier authority. | |
getSubAuthorityCount ( ) : integer | The number of elements in the sub-authority array. | |
toBinary ( ) : string | Get the SID in binary string form. | |
toString ( ) : string | Get the SID in its friendly string form. |
Method | Description | |
---|---|---|
decodeFromBinary ( string $value ) | Parse the binary form of a SID into its respective parts that make it up. | |
decodeFromString ( string $value ) |
public __construct ( string $sid ) | ||
$sid | string | The SID in string, short name, or binary form. |
protected decodeFromBinary ( string $value ) | ||
$value | string |
public getIdentifierAuthority ( ) : integer | ||
return | integer |
public getRevisionLevel ( ) : integer | ||
return | integer |
public getShortName ( ) : string | null | ||
return | string | null |
public getSubAuthorities ( ) : int[] | ||
return | int[] |
public getSubAuthorityCount ( ) : integer | ||
return | integer |
protected $identifierAuthority |