广告平台(站长使用)
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.

1 month ago
123456789101112
  1. package utils
  2. import (
  3. "crypto/md5"
  4. "encoding/hex"
  5. )
  6. func Md5(str string) string {
  7. h := md5.New()
  8. h.Write([]byte(str))
  9. return hex.EncodeToString(h.Sum(nil))
  10. }