您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
123456789101112 |
- package zhios_third_party_utils
-
- import (
- "crypto/md5"
- "encoding/hex"
- )
-
- func Md5(str string) string {
- h := md5.New()
- h.Write([]byte(str))
- return hex.EncodeToString(h.Sum(nil))
- }
|