如何使用由Crypto库加密的CryptoJS解密数据?

时间:2018-11-22 13:39:42

标签: javascript encryption aes cryptojs

我在客户端使用了Crypto库,并且由于不推荐使用,所以我正尝试使用CryptoJS。

我有通过以下代码加密(使用加密)的数据:

export function encrypt(toEncrypt, password) {
    let cipher = crypto.createCipher('aes-256-ctr', password);
    crypted += cipher.final('hex');
    return crypted;
}

如何使用CryptoJS解密此代码的输出数据?

0 个答案:

没有答案