1 Star 4 Fork 3

tym_hmm/go-helper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Hash.go 217 Bytes
一键复制 编辑 原始数据 按行查看 历史
天蝎儿 提交于 2022-11-16 18:04 . 增加sha1
package Hash
import (
"crypto/sha256"
"encoding/hex"
)
/**
生成hash256
*/
func Hash256(str string) string {
h := sha256.New()
h.Write([]byte(str))
sum := h.Sum(nil)
s := hex.EncodeToString(sum)
return s
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tym_hmm/go-helper.git
git@gitee.com:tym_hmm/go-helper.git
tym_hmm
go-helper
go-helper
v1.1.47

搜索帮助