(ACE string)
| 180 | } |
| 181 | |
| 182 | func getSID(ACE string) (SID string) { |
| 183 | SID = ACE[len(ACE)-56:] |
| 184 | |
| 185 | return |
| 186 | } |
| 187 | |
| 188 | func hexToInt(hex string) (integer int) { |
| 189 | integer64, _ := strconv.ParseInt(hex, 16, 64) |
nothing calls this directly
no outgoing calls
no test coverage detected