1 Star 0 Fork 0

余济舟/util

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
sm3.go 221 Bytes
Copy Edit Raw Blame History
package digest
import (
"github.com/tjfoc/gmsm/sm3"
"encoding/hex"
)
// Sm3 生成sm3摘要
func Sm3(original []byte) string {
h := sm3.New()
h.Write(original)
sum := h.Sum(nil)
return hex.EncodeToString(sum)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jericho-yu/util.git
git@gitee.com:jericho-yu/util.git
jericho-yu
util
util
v2.11.1

Search