加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hmac_sha256.go 442 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2022-05-21 13:22 . v0.1.0 更新注释信息
package dongle
import (
"crypto/hmac"
"crypto/sha256"
"hash"
)
// ByHmacSha256 encrypts by hmac with sha256.
// 通过 hmac-sha256 加密
func (e encrypt) ByHmacSha256(key interface{}) encrypt {
if len(e.src) == 0 {
return e
}
var mac hash.Hash
switch v := key.(type) {
case string:
mac = hmac.New(sha256.New, string2bytes(v))
case []byte:
mac = hmac.New(sha256.New, v)
}
mac.Write(e.src)
e.dst = mac.Sum(nil)
return e
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化