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

13 lines
153 B
Go

11 months ago
package utils
import (
"crypto/md5"
"io"
)
func Md5(str string) string {
h := md5.New()
_, _ = io.WriteString(h, str)
return string(h.Sum(nil))
}