Skip to content

Instantly share code, notes, and snippets.

@sergiotapia
Last active December 5, 2023 03:53
Show Gist options
  • Save sergiotapia/8263278 to your computer and use it in GitHub Desktop.
Save sergiotapia/8263278 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))
}
@kewlamogh
Copy link

Really helpful, thanks!

@bugielektrik
Copy link

+1 Thanks from Kazakhstan

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