
npm install aes-cliAn example of how one might encrypt/decrypt files using node.
Code for this companion article: Encrypting Files With Node.
This code is adapted from the original. The original repo can be found here: https://github.com/bbstilson/node-encryption
#### Added
- Add Node bin and Shebang to use as CLI tool. - F1LT3R
- Add linting inputs and vscode settings. - F1LT3R
- Add password, and password verification input. - F1LT3R
``shell`
npm install
1. From your shell: aes encrypt test.txttest.txt.enc
2. You will be prompted for a password, and password verification.
3. You will now see . This is the encrypted data.
4. You can delete the original file, if you like.
1. From your shell: aes decrypt test.txttest.txt.unenc
2. You will be prompted for a password, and password verification.
3. You will now see . This file will be identical to the original.test.txt`.
4. You can rename this file back to