aes-password
v1.0.5
Published
Encrypt data with a password using aes-cbc!
Downloads
72
Maintainers
Readme
import { AESEncryption } from 'aes-password';
const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
import { AESEncryption } from 'aes-password';
const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
const decrypted = AESEncryption.decrypt(encrypted, 'Password');