(rawACE string)
| 172 | } |
| 173 | |
| 174 | func getACE(rawACE string) (ACE string) { |
| 175 | aceLengthBytes, _ := strconv.Atoi(hexToDecimalString(endianConvert(rawACE[4:8]))) |
| 176 | aceLength := aceLengthBytes * 2 |
| 177 | ACE = rawACE[:aceLength] |
| 178 | |
| 179 | return |
| 180 | } |
| 181 | |
| 182 | func getSID(ACE string) (SID string) { |
| 183 | SID = ACE[len(ACE)-56:] |
no test coverage detected