mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
8 lines
276 B
Go
8 lines
276 B
Go
package model
|
|
|
|
type Checksum struct {
|
|
// Identifies the algorithm used to produce the subject Checksum. One of: "SHA256", "SHA1", "SHA384", "MD2", "MD4", "SHA512", "MD6", "MD5", "SHA224"
|
|
Algorithm string `json:"algorithm"`
|
|
ChecksumValue string `json:"checksumValue"`
|
|
}
|