Skip to content

Instantly share code, notes, and snippets.

@byrnedo
Created September 12, 2016 07:32
Show Gist options
  • Save byrnedo/46489dae775a22e71818950a6a5c9a68 to your computer and use it in GitHub Desktop.
Save byrnedo/46489dae775a22e71818950a6a5c9a68 to your computer and use it in GitHub Desktop.
Compute a hmac for a message in golang
func ComputeHmac256(message string, secret string) string {
key := []byte(secret)
h := hmac.New(sha256.New, key)
h.Write([]byte(message))
return base64.StdEncoding.EncodeToString(h.Sum(nil))
}
@lilWe3zy
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment