📜  javascript代码示例中最好和最快的加密和解密值

📅  最后修改于: 2022-03-11 15:02:54.727000             🧑  作者: Mango

代码示例1
const Cryptr = require('cryptr');
const cryptr = new Cryptr('ReallySecretKey');

const encryptedString = cryptr.encrypt('Popcorn');
const decryptedString = cryptr.decrypt(encryptedString);

console.log(encryptedString);