我需要在浏览器中解密用 AES-CTR 256 位编码的消息(使用 OpenSSL 编码)。
使用 OpenSSL 我得到类似的东西:
key=189BBBB00C5F1FB7FBA9AD9285F193D1771D7611CB891E5C1F4E24C20E50FB1D
iv =4103C88663AE12CE18EA46E894280C4D
msg=nhVKeu8zNO2PRTwJrDE=
好吧,我的问题是将这些字符串转换为window.crypto.subtle
API 可以管理的对象。例如。
const counter = ???;
const ciphertext = ???;
const rawKey = ???;
const key = window.crypto.subtle.importKey(
"raw",
key,
"AES-CTR",
true,
["encrypt", "decrypt"]
);
const decrypted = await window.crypto.subtle.decrypt(
{
name: "AES-CTR",
counter,
length: 64
},
key,
ciphertext
);
let dec = new TextDecoder();
const msg = dec.decode(decrypted);
console.log(msg);
谁能帮我从key
, iv
,msg
到counter
, ciphertext
, rawkey
?
非常感谢