Encrypt and decrypt strings with Node.js
npm i wcrypt
/* Default options shown */
const wcrypt = require('wcrypt')({
algorithm: 'aes-192-cbc',
password: 'password',
salt: 'salt',
length: 24
})
/* Encrypt a string */
const encrypted = await wcrypt.encrypt('clear text string')
// e1ec7507554a2ce8c5d13b01f803c64f3b95c08d8a9b61e964f78d7656bbecb9
/* Decrypt a string */
const decrypted = await wcrypt.decrypt(encrypted)
// clear text stringMIT licensed. Enjoy!