Unverified Commit 4a0eb2ac authored by Tariq Ibrahim's avatar Tariq Ibrahim Committed by Matthew Fisher
Browse files

add errcheck for Digest method in sign.go


Signed-off-by: default avatarTariq Ibrahim <tariq181290@gmail.com>
No related merge requests found
Showing with 3 additions and 1 deletion
+3 -1
......@@ -404,6 +404,8 @@ func DigestFile(filename string) (string, error) {
// Helm uses SHA256 as its default hash for all non-cryptographic applications.
func Digest(in io.Reader) (string, error) {
hash := crypto.SHA256.New()
io.Copy(hash, in)
if _, err := io.Copy(hash, in); err != nil {
return "", nil
}
return hex.EncodeToString(hash.Sum(nil)), nil
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment