Skip to content

Instantly share code, notes, and snippets.

@efrenfuentes
Forked from sergiotapia/md5-example.go
Created May 12, 2018 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efrenfuentes/217f9d4dc991baa7a845ae69400d3867 to your computer and use it in GitHub Desktop.
Save efrenfuentes/217f9d4dc991baa7a845ae69400d3867 to your computer and use it in GitHub Desktop.
Golang - How to hash a string using MD5.
import (
"crypto/md5"
"encoding/hex"
)
func GetMD5Hash(text string) string {
hasher := md5.New()
hasher.Write([]byte(text))
return hex.EncodeToString(hasher.Sum(nil))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment