Md5Util.go 169 Bytes
package util

import (
	"crypto/md5"
	"encoding/hex"
)

func Md5(s string) string {
	h := md5.New()
	h.Write([]byte(s))
	r := hex.EncodeToString(h.Sum(nil))
	return r
}