about summary refs log tree commit diff stats
path: root/internal/builder/hasher.go
blob: dbc29f8e5d9c9546b6edc0d0db8458c48e4f4f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package builder

import (
	"crypto/sha256"
	"encoding/base64"
)

func hash(s string) string {
	shasum := sha256.New()
	shasum.Write([]byte(s))
	return "sha256-" + base64.StdEncoding.EncodeToString(shasum.Sum(nil))
}