如何在 JS 中获取 CryptoJS.HmacSHA256 的摘要表示

How to get digest representation of CryptoJS.HmacSHA256 in JS(如何在 JS 中获取 CryptoJS.HmacSHA256 的摘要表示)
本文介绍了如何在 JS 中获取 CryptoJS.HmacSHA256 的摘要表示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我必须在摘要中生成 CryptoJS.HmacSHA256 的字符串表示(字节表示).

I have to generate string representation of CryptoJS.HmacSHA256 in digest (bytes representation).

我需要它,因为我必须复制在 javascript 中生成此类摘要的 python 代码:

I need it because i have to duplicate python code which generate such digest in javascript:

print hmac.new("secret", "test", hashlib.sha256).digest()

')kb>y+:oΚH   '

目标是在 javascript 中复制上述代码的行为.

The goal is to duplicate behaviour of code above in javascript.

你能建议我怎么做吗?

推荐答案

如果您需要原始字节,那么 CryptoJS 似乎没有为它提供代码.提到这是因为Uint8Array和朋友缺乏跨浏览器兼容性.

If you need raw bytes then CryptoJS does not seem to supply code for it. It is mentioned that this is because of lack of cross browser compatibility for Uint8Array and friends.

但是,经过搜索,我确实找到了一些由 Vincenzo Ciancia 创建的转换代码:

However, after searching, I did find some conversion code created by Vincenzo Ciancia:

CryptoJS.enc.u8array = {
    /**
     * Converts a word array to a Uint8Array.
     *
     * @param {WordArray} wordArray The word array.
     *
     * @return {Uint8Array} The Uint8Array.
     *
     * @static
     *
     * @example
     *
     *     var u8arr = CryptoJS.enc.u8array.stringify(wordArray);
     */
    stringify: function (wordArray) {
        // Shortcuts
        var words = wordArray.words;
        var sigBytes = wordArray.sigBytes;

        // Convert
        var u8 = new Uint8Array(sigBytes);
        for (var i = 0; i < sigBytes; i++) {
            var byte = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;
            u8[i]=byte;
        }

        return u8;
    },

    /**
     * Converts a Uint8Array to a word array.
     *
     * @param {string} u8Str The Uint8Array.
     *
     * @return {WordArray} The word array.
     *
     * @static
     *
     * @example
     *
     *     var wordArray = CryptoJS.enc.u8array.parse(u8arr);
     */
    parse: function (u8arr) {
        // Shortcut
        var len = u8arr.length;

        // Convert
        var words = [];
        for (var i = 0; i < len; i++) {
            words[i >>> 2] |= (u8arr[i] & 0xff) << (24 - (i % 4) * 8);
        }

        return CryptoJS.lib.WordArray.create(words, len);
    }
};

当然请注意,字节不会直接转换为字符;你不能使用文本比较来比较 ') kb > y+ : oΚ H ' 由 python 生成.为此,您确实需要一个编码器,例如十六进制或 base 64.在这种情况下,请查看 来自Artjom 代替.

Note of course that bytes don't translate directly to characters; you cannot use a text compare to compare against ')kb>y+:oΚH ' generated by python. For that you do need an encoder such as hexadecimals or base 64. In that case please look at the answer from Artjom instead.

这篇关于如何在 JS 中获取 CryptoJS.HmacSHA256 的摘要表示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Using discord.js to detect image and respond(使用 discord.js 检测图像并响应)
Check if user ID exists in Discord server(检查 Discord 服务器中是否存在用户 ID)
Guild Member Add does not work (discordjs)(公会成员添加不起作用(discordjs))
Creating my first bot using REPLIT but always error Discord.JS(使用 REPLIT 创建我的第一个机器人,但总是错误 Discord.JS)
How do I code event/command handlers for my Discord.js bot?(如何为我的 Discord.js 机器人编写事件/命令处理程序?)
How to find a User ID from a Username in Discord.js?(如何从 Discord.js 中的用户名中查找用户 ID?)