0

我正在使用 Google 的 CryptoJS 将功能迁移到浏览器原生 WebCryptography API。

使用 CryptoJS,我使用以下代码获取 SHA1 哈希的 words 数组

CryptoJS.SHA1('1w0g6Ixf2VHvOc+6pGBqDHItFYQ=:9590467').words

它返回[888149035, -1762573935, 1178769020, -1914057363, 481296384]

使用 WebCrypto API,我使用

const msgBuffer = new TextEncoder().encode('1w0g6Ixf2VHvOc+6pGBqDHItFYQ=:9590467')
const hashBuffer = await crypto.subtle.digest('SHA-1', msgBuffer);
const hashArray = Array.from(new Uint8Array(hashBuffer));

并且hashArray[52, 240, 20, 43, 150, 241, 65, 145, 70, 66, 150, 124, 141, 233, 205, 109, 28, 176, 0, 0]

如何将此结果转换为与 CyptoJS 相同的数组?

4

1 回答 1

3

要是这么简单就好了

const msgBuffer = new TextEncoder().encode('1w0g6Ixf2VHvOc+6pGBqDHItFYQ=:9590467')
const hashBuffer = await crypto.subtle.digest('SHA-1', msgBuffer);
const hashArray = Array.from(new Int32Array(hashBuffer));

除了字节序 - 所以,它只是稍微复杂一点

async function test() {
    const msgBuffer = new TextEncoder().encode('1w0g6Ixf2VHvOc+6pGBqDHItFYQ=:9590467')
    const hashBuffer = await crypto.subtle.digest('SHA-1', msgBuffer);
    const dv = new DataView(hashBuffer);
    const hashArray = [];
    for(let i = 0; i < dv.byteLength; i+=4) {
        hashArray.push(dv.getInt32(i, false));
    }
    return hashArray;
};
test().then(console.log);

于 2017-11-23T04:38:19.037 回答