(report Report, out string)
| 76 | } |
| 77 | |
| 78 | func SwidJson(report Report, out string) { |
| 79 | swidZip(out, report, func(tag *swid.SoftwareIdentity, w io.Writer) error { |
| 80 | return json.NewEncoder(w).Encode(tag) |
| 81 | }) |
| 82 | } |
| 83 | |
| 84 | func SwidXml(report Report, out string) { |
| 85 | swidZip(out, report, func(tag *swid.SoftwareIdentity, w io.Writer) error { |