Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
4a0eb2ac
Unverified
Commit
4a0eb2ac
authored
5 years ago
by
Tariq Ibrahim
Committed by
Matthew Fisher
5 years ago
Browse files
Options
Download
Patches
Plain Diff
add errcheck for Digest method in sign.go
Signed-off-by:
Tariq Ibrahim
<
tariq181290@gmail.com
>
parent
2420009a
release-2.14
v2.14.3
v2.14.2
v2.14.1
v2.14.0
v2.14.0-rc.2
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pkg/provenance/sign.go
+3
-1
pkg/provenance/sign.go
with
3 additions
and
1 deletion
+3
-1
pkg/provenance/sign.go
+
3
−
1
View file @
4a0eb2ac
...
...
@@ -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
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets