提交
This commit is contained in:
16
pkg/crypto/md5.go
Normal file
16
pkg/crypto/md5.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package crypto
|
||||
|
||||
import (
|
||||
"crypto/md5"
|
||||
"encoding/hex"
|
||||
)
|
||||
|
||||
//GetMd5 生成32位md5字串
|
||||
func GetMd5(s string) string {
|
||||
if s == "" {
|
||||
return ""
|
||||
}
|
||||
h := md5.New()
|
||||
h.Write([]byte(s))
|
||||
return hex.EncodeToString(h.Sum(nil))
|
||||
}
|
||||
Reference in New Issue
Block a user