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))
}
@lithium555
Copy link

Thank you!

@luqman-v1
Copy link

thankyouu

@nklepatskii
Copy link

๐Ÿ‘

Copy link

ghost commented Sep 22, 2022

โœŒ๐Ÿฟ

@OffenLord
Copy link

๐Ÿ‘

@MystixCode
Copy link

๐Ÿ‘

@lilWe3zy
Copy link

๐Ÿ‘

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