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.
sonic/util/encrypt.go

14 lines
169 B
Go

package util
import (
"crypto/md5"
"encoding/hex"
)
func Md5(s string) string {
d := []byte(s)
m := md5.New()
m.Write(d)
return hex.EncodeToString(m.Sum(nil))
}