标签:mac byte 对比 UNC tostring www pack col Go语言
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) }
标签:mac byte 对比 UNC tostring www pack col Go语言
原文地址:https://www.cnblogs.com/baigoogledu/p/12327209.html