dtc88867 2017-01-07 12:04
浏览 337
已采纳

如何将此代码从golang转换为crypto hmac sha256 hex中的reactjs

Golang code is as below

func GenerateClientToken(secret, user, timestamp, info string) string {
    token := hmac.New(sha256.New, []byte(secret))
    token.Write([]byte(user))
    token.Write([]byte(timestamp))
    token.Write([]byte(info))
    return hex.EncodeToString(token.Sum(nil))
}

How can I convert from this to reactjs code. I am trying like this

import CryptoJS from 'crypto-js'

generateClientToken(secret, user, timestamp, info) {
        var hmac = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, secret);

        hmac.update(user);
        hmac.update(timestamp);
        hmac.update(info);

        var hash = hmac.finalize();
        console.log("hmac: ", hash.toString(CryptoJS.enc.Base64))
        console.log("hmac: ", hash.toString(CryptoJS.enc.Hex))
    }

but result is not same with golang result. What am I wrong? and How will I do?

  • 写回答

1条回答 默认 最新

  • duanliujie8639 2017-01-10 01:12
    关注

    Go code: https://play.golang.org/p/7pXgn5GPQm

    React:

    • Package used: "crypto-js": "^3.1.9-1"
    • React v15.4.2

    Inside a React Component, a function:

        generateClientToken(secret, user, timestamp, info) {
          let hmac = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, secret);
    
          hmac.update(user);
          hmac.update(timestamp);
          hmac.update(info);
    
          let hash = hmac.finalize();
    
          console.log("hmac: ", hash.toString(CryptoJS.enc.Hex))
      }
    

    Inside render()

    const secret = "test";
    const user = "Dennis";
    const timestamp = "1";
    const info = "qwerty";
    this.generateClientToken(secret, user, timestamp, info);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#vscode#的问题:ESP32开发板对接MQTT实现小灯泡的开关
  • ¥15 TMC2209串口模式下读取不到寄存器的值串口助手蓝色字体是发过去的消息,绿色字体是收到的消息,第二行发送读取寄存器的指令但是没有读取到寄存器的值串口助手如下图:接线如下图,如何解决?
  • ¥15 高通安卓11提取完整线刷包软件,或者优博讯dt50顺丰刷机包
  • ¥20 C,有个译码器,换了信道就跑不出原来数据
  • ¥15 MIMIC数据库安装问题
  • ¥60 基于JTag协议开发Fpga下载器上位机,哪位大🐂有偿指导?
  • ¥20 全书网Java爬取数据
  • ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏