all repos — homestead @ 21b55d5338357e1f13767ad2473e1722e00e269a

Code for my website

internal/builder/hasher.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
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))
}