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