MCPcopy Index your code
hub / github.com/Synzack/ldapper / getACLHeader

Function getACLHeader

SecurityDescriptor/SecurityDescriptorFuncs.go:26–35  ·  view source on GitHub ↗
(SD string)

Source from the content-addressed store, hash-verified

24}
25
26func getACLHeader(SD string) *ACLHEADER {
27 ACLHeader := new(ACLHEADER)
28 ACLHeader.ACLRevision = SD[40:42]
29 ACLHeader.Sbz1 = endianConvert(SD[42:44])
30 ACLHeader.ACLSizeBytes = endianConvert(SD[44:48])
31 ACLHeader.ACECount = endianConvert(SD[48:52])
32 ACLHeader.Sbz2 = endianConvert(SD[52:56])
33
34 return ACLHeader
35}
36
37func getACEHeader(SD string) *ACEHEADER {
38 ACEHeader := new(ACEHEADER)

Callers 1

ParseSDFunction · 0.85

Calls 1

endianConvertFunction · 0.85

Tested by

no test coverage detected