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.
naza/pkg/nazamd5/md5.go

14 lines
189 B
Go

package nazamd5
import (
"crypto/md5"
"encoding/hex"
)
// 返回32字节小写字符串
func MD5(b []byte) string {
h := md5.New()
h.Write(b)
return hex.EncodeToString(h.Sum(nil))
}