WithDigest appends a digest to the given image reference.
(ref string)
| 27 | |
| 28 | // WithDigest appends a digest to the given image reference. |
| 29 | func WithDigest(ref string) string { |
| 30 | checksum := sha256.New() |
| 31 | checksum.Write([]byte(ref)) |
| 32 | return fmt.Sprintf("%s@sha256:%x", ref, checksum.Sum(nil)) |
| 33 | } |