1 Star 0 Fork 50

dtbsky/dongle

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

搜索帮助