MCPcopy Create free account
hub / github.com/Synzack/ldapper / hexToInt

Function hexToInt

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

Source from the content-addressed store, hash-verified

186}
187
188func hexToInt(hex string) (integer int) {
189 integer64, _ := strconv.ParseInt(hex, 16, 64)
190 integer = int(integer64)
191 return
192}
193
194func ParseSD(SD string, baseDN string, conn *ldap.Conn) (abusableAcesResult []CHECK_ABUSABLE_ACES) {
195 header := getHeader(SD)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected