(header *HEADER, sd string)
| 64 | } |
| 65 | |
| 66 | func GetGroup(header *HEADER, sd string) (groupSID string) { |
| 67 | offset := hexToOffset(header.OffsetGroup) |
| 68 | groupHexSID := sd[offset : offset+56] |
| 69 | groupSID = convertSID(groupHexSID) |
| 70 | |
| 71 | return |
| 72 | } |
| 73 | |
| 74 | func getObjectAndInheritedType(ACE string, ACEFlags string) (objectTypeGUID string, inheritedObjectTypeGUID string) { |
| 75 | //ObjectType field existent |
nothing calls this directly
no test coverage detected