(b, s []byte)
| 186 | func put64be(b []byte, x uint64) []byte { binary.BigEndian.PutUint64(b, x); return b[8:] } |
| 187 | func put8(b []byte, x uint8) []byte { b[0] = x; return b[1:] } |
| 188 | func puts(b, s []byte) []byte { n := copy(b, s); return b[n:] } |
| 189 | |
| 190 | // Size computes the size of the code signature. |
| 191 | // id is the identifier used for signing (a field in CodeDirectory blob, which |
no outgoing calls
no test coverage detected
searching dependent graphs…