mirror of https://github.com/q191201771/naza
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.
14 lines
189 B
Go
14 lines
189 B
Go
5 years ago
|
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))
|
||
|
}
|