Skip to content

Instantly share code, notes, and snippets.

@kentquirk
Created June 28, 2018 02:13
Show Gist options
  • Save kentquirk/bea4133c0500bf5942ad7de56772e71a to your computer and use it in GitHub Desktop.
Save kentquirk/bea4133c0500bf5942ad7de56772e71a to your computer and use it in GitHub Desktop.
hashit function in go
func hashit(s string) []byte {
h := sha256.New()
h.Write([]byte(s))
return h.Sum(nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment