加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sm3.go 243 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-11-21 23:08 . 移除中文注释
package dongle
import (
"github.com/emmansun/gmsm/sm3"
)
// BySm3 encrypts by sm3.
func (e Encrypter) BySm3() Encrypter {
if len(e.src) == 0 || e.Error != nil {
return e
}
h := sm3.New()
h.Write(e.src)
e.dst = h.Sum(nil)
return e
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化