(outputloc string, inputloc string, cert string)
| 22 | } |
| 23 | |
| 24 | func writecertfromdisk(outputloc string, inputloc string, cert string) { |
| 25 | certfile, _ := ioutil.ReadFile(cert) |
| 26 | appendcert(outputloc, inputloc, certfile) |
| 27 | } |
| 28 | |
| 29 | func writecertfromexe(outputloc string, inputloc string, certfileloc string) { |
| 30 | certfile := getcert(certfileloc) |
nothing calls this directly
no test coverage detected