uitls.go 181 B

12345678910111213
  1. package utils
  2. import (
  3. "crypto/md5"
  4. "fmt"
  5. )
  6. // UtilMd5 结算md5的值
  7. func UtilMd5(s string) string {
  8. data := []byte(s)
  9. has := md5.Sum(data)
  10. return fmt.Sprintf("%x", has)
  11. }