在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Go语言HmacSHA1 对比 http://www.metools.info/code/c25.html package main import ( "crypto/hmac" "crypto/sha1" "encoding/hex" "fmt" ) func HmacSHA1(key string, data string) string { mac := hmac.New(sha1.New, []byte(key)) mac.Write([]byte(data)) return hex.EncodeToString(mac.Sum(nil)) } func main() { data := HmacSHA1("123", "7848871513115BC19322112B3") fmt.Printf("%v", data) }
|
请发表评论