Encrypt data with a password using aes-cbc!
npm install aes-password
Secure Encryption as easy as a-b-c. All you need to do is import a module and call a function 😮!
ts
import { AESEncryption } from 'aes-password';
const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
`
Decryption
`ts
import { AESEncryption } from 'aes-password';
const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
const decrypted = AESEncryption.decrypt(encrypted, 'Password');
``