Javascript AES Crypto Library which support web and nodejs
npm install pandora-aes-xl
AES 加密解密。默认使用gcm
模式。
import AES from 'pandora-aes-xl';
AES.createKey();
使用该方法生成密钥后,会缓存该密钥,使用加密(encrypt)或解密(decrypt)方法时也可不提供密钥。
import AES from 'pandora-aes-xl';
AES.encrypt(data, '密钥');
该方法会先执行JSON.stringify(data),将数据转为json格式的字符串,然后使用AES加密。
import AES from 'pandora-aes-xl';
AES.decrypt('encrypted message', '密钥');
该方法会使用AES解密,再执行JSON.parse,获取数据。
import AES from 'pandora-aes-xl';
AES.getKey();
import AES from 'pandora-aes-xl';
AES.setKey('密钥');
import AES from 'pandora-aes-xl';
AES.clearKey();