golang hmac的sha1加密例子

前端之家收集整理的这篇文章主要介绍了golang hmac的sha1加密例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

想要用go写btcchina平台的接口,api加密形式在PHP中是hash_hmac('sha1',$string,$key);

go中的一样有hmac包,下面是代码

package main

import (
	"crypto/hmac"
	"crypto/sha1"
	"fmt"
	"io"
)

func main() {
	//sha1
	h := sha1.New()
	io.WriteString(h,"aaaaaa")
	fmt.Printf("%x\n",h.Sum(nil))

	//hmac,use sha1
	key := []byte("123456")
	mac := hmac.New(sha1.New,key)
	mac.Write([]byte("aaaaaa"))
	fmt.Printf("%x\n",mac.Sum(nil))
}


声明:此文系舞林cuznwww.wulinlw.org)原创稿件,转载请保留版权

原文链接:https://www.f2er.com/go/188317.html

猜你在找的Go相关文章