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