@nacho-cs/aes
v1.0.2
Published
Quick and easy encryption using AES
Downloads
2
Readme
aes
Quick and easy encryption using AES
IMPORTANT: Do not use this package for encrpyting passwords. Use bcrpyt for encrypting passwords.
import { aes } from "@nacho-cs/aes";
const encryption = aes.encrypt("some data");
console.log(encryption); // <encryption>
console.log(aes.decrypt(encryption)); // "some data"