Skip to content

Instantly share code, notes, and snippets.

@ergoz
Forked from sergiotapia/md5-example.go
Created July 31, 2014 10:56
Show Gist options
  • Save ergoz/69bd374bb759aff9ca9d to your computer and use it in GitHub Desktop.
Save ergoz/69bd374bb759aff9ca9d to your computer and use it in GitHub Desktop.
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