MCPcopy Index your code
hub / github.com/Synzack/ldapper / hexToDecimalString

Function hexToDecimalString

SecurityDescriptor/SecurityDescriptorFuncs.go:135–140  ·  view source on GitHub ↗
(hex string)

Source from the content-addressed store, hash-verified

133}
134
135func hexToDecimalString(hex string) (decimal string) {
136 integer, _ := strconv.ParseInt(hex, 16, 64)
137 decimal = strconv.Itoa(int(integer))
138
139 return
140}
141
142func convertSID(hexSID string) (SID string) {
143 //https://devblogs.microsoft.com/oldnewthing/20040315-00/?p=40253

Callers 3

convertSIDFunction · 0.85
getACEFunction · 0.85
ParseSDFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected