Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
func AllCoordinates ¶ added in v0.31.0
func AllCoordinates(sbom SBOM) []source.Coordinates
Types ¶
type Artifacts ¶
type Artifacts struct { PackageCatalog *pkg.Catalog FileMetadata map[source.Coordinates]source.FileMetadata FileDigests map[source.Coordinates][]file.Digest FileClassifications map[source.Coordinates][]file.Classification FileContents map[source.Coordinates]string Secrets map[source.Coordinates][]file.SearchResult LinuxDistribution *linux.Release }
type Decoder ¶ added in v0.41.0
Decoder is a function that can convert an SBOM document of a specific format from a reader into Syft native objects.
type Descriptor ¶ added in v0.31.0
type Encoder ¶ added in v0.41.0
Encoder is a function that can transform Syft native objects into an SBOM document of a specific format written to the given writer.
type Format ¶ added in v0.41.0
type SBOM ¶
type SBOM struct { Artifacts Artifacts Relationships []artifact.Relationship Source source.Metadata Descriptor Descriptor }
type Validator ¶ added in v0.41.0
Validator reads the SBOM from the given reader and assesses whether the document conforms to the specific SBOM format. The validator should positively confirm if the SBOM is not only the format but also has the minimal set of values that the format requires. For example, all syftjson formatted documents have a schema section which should have "anchore/syft" within the version --if this isn't found then the validator should raise an error. These active assertions protect against "simple" format decoding validations that may lead to false positives (e.g. I decoded json successfully therefore this must be the target format, however, all values are their default zero-value and really represent a different format that also uses json)
type Writer ¶ added in v0.35.0
type Writer interface { // Write writes the provided SBOM Write(SBOM) error // Closer a resource cleanup hook which will be called after SBOM // is written or if an error occurs before Write is called io.Closer }
Writer an interface to write SBOMs
func NewWriter ¶ added in v0.41.0
func NewWriter(options ...WriterOption) (_ Writer, err error)
NewWriter create all report writers from input options; if a file is not specified, os.Stdout is used
type WriterOption ¶ added in v0.41.0
WriterOption Format and path strings used to create sbom.Writer
func NewWriterOption ¶ added in v0.41.1
func NewWriterOption(f Format, p string) WriterOption