Skip to content

Instantly share code, notes, and snippets.

@sergiotapia
sergiotapia / md5-example.go
Last active March 31, 2025 17:28
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))
}