我在客户端使用了Crypto库,并且由于不推荐使用,所以我正尝试使用CryptoJS。
我有通过以下代码加密(使用加密)的数据:
export function encrypt(toEncrypt, password) {
let cipher = crypto.createCipher('aes-256-ctr', password);
crypted += cipher.final('hex');
return crypted;
}
如何使用CryptoJS解密此代码的输出数据?