1 Star 0 Fork 0

Jollia Golang Library/JoKode

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
md5.go 212 Bytes
Copy Edit Raw Blame History
Jollia authored 2024-10-04 14:07 +08:00 . 合入其他基础模块
package jokode
import (
"crypto/md5"
"fmt"
)
func SumMd5Data(data []byte) string {
h := md5.Sum(data)
return fmt.Sprintf("%x", h)
}
func SumMd5String(str string) string {
return SumMd5Data([]byte(str))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jolib/jokode.git
git@gitee.com:jolib/jokode.git
jolib
jokode
JoKode
v0.8.5

Search