summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-task/slim-sprig/crypto.go
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-04-05 09:37:20 +0000
committerGitHub <noreply@github.com>2021-04-05 09:37:20 +0000
commited5ad8cac44119f33ab595cb790a8603a53569c9 (patch)
treef03137aa61aa8a989e8dd1df47a93a38707533a0 /vendor/github.com/go-task/slim-sprig/crypto.go
parent6ca4bc3fe4f9f96f8c9deca5db5138d68857a831 (diff)
downloadpodman-ed5ad8cac44119f33ab595cb790a8603a53569c9.tar.gz
podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.tar.bz2
podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.zip
Bump github.com/onsi/ginkgo from 1.15.2 to 1.16.0
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.15.2 to 1.16.0. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v1.15.2...v1.16.0) Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/go-task/slim-sprig/crypto.go')
-rw-r--r--vendor/github.com/go-task/slim-sprig/crypto.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/github.com/go-task/slim-sprig/crypto.go b/vendor/github.com/go-task/slim-sprig/crypto.go
new file mode 100644
index 000000000..d06e516d4
--- /dev/null
+++ b/vendor/github.com/go-task/slim-sprig/crypto.go
@@ -0,0 +1,24 @@
+package sprig
+
+import (
+ "crypto/sha1"
+ "crypto/sha256"
+ "encoding/hex"
+ "fmt"
+ "hash/adler32"
+)
+
+func sha256sum(input string) string {
+ hash := sha256.Sum256([]byte(input))
+ return hex.EncodeToString(hash[:])
+}
+
+func sha1sum(input string) string {
+ hash := sha1.Sum([]byte(input))
+ return hex.EncodeToString(hash[:])
+}
+
+func adler32sum(input string) string {
+ hash := adler32.Checksum([]byte(input))
+ return fmt.Sprintf("%d", hash)
+}