github.com/anchore/syft@v1.38.2/syft/pkg/cocoapods.go (about) 1 package pkg 2 3 // CocoaPodfileLockEntry represents a single entry from the "Pods" section of a Podfile.lock file. 4 type CocoaPodfileLockEntry struct { 5 // Checksum is the SHA-1 hash of the podspec file for integrity verification (generated via `pod ipc spec ... | openssl sha1`), ensuring all team members use the same pod specification version 6 Checksum string `mapstructure:"checksum" json:"checksum"` 7 }