码迷,mamicode.com
首页 > 编程语言 > 详细

Go语言HmacSHA1

时间:2020-02-18 18:29:28      阅读:99      评论:0      收藏:0      [点我收藏+]

标签: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)
}

 

Go语言HmacSHA1

标签:mac   byte   对比   UNC   tostring   www   pack   col   Go语言   

原文地址:https://www.cnblogs.com/baigoogledu/p/12327209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!