(outputloc string, inputloc string, certfileloc string)
| 27 | } |
| 28 | |
| 29 | func writecertfromexe(outputloc string, inputloc string, certfileloc string) { |
| 30 | certfile := getcert(certfileloc) |
| 31 | appendcert(outputloc, inputloc, certfile) |
| 32 | } |
| 33 | |
| 34 | func appendcert(outputloc string, inputloc string, cert []byte) { |
| 35 | pefile, _ := pe.Open(inputloc) |
no test coverage detected