You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/helper_md5/helper_md5.go

12 lines
170 B

package helper_md5
import (
"crypto/md5"
"encoding/hex"
)
func MD5(str string) string {
s := md5.New()
s.Write([]byte(str))
return hex.EncodeToString(s.Sum(nil))
}