| 23 | } |
| 24 | |
| 25 | type AttestationVerifier struct { |
| 26 | AttClient api.Client |
| 27 | ExternalHttpClient *http.Client |
| 28 | IO *iostreams.IOStreams |
| 29 | TrustedRoot string |
| 30 | } |
| 31 | |
| 32 | func (v *AttestationVerifier) VerifyAttestation(art *artifact.DigestedArtifact, att *api.Attestation) (*verification.AttestationProcessingResult, error) { |
| 33 | td, err := v.AttClient.GetTrustDomain() |
nothing calls this directly
no outgoing calls
no test coverage detected