Symmetric-key encryption & decription file using openssl
Simple encryption-decription method using Symmetric-key encryption by openssl
./generate.sh ~/.ssh/id_rsa
It will asking passphrase to set with the encryption process
Input passphrase for encypt: < type the passphrase >
The encrypted file will saved on files
directory.
By running the command above, the result of decription value will be shown on the terminal.
./read.sh ./files/someFileName.dat
It will ask for the passphrase
Input passphrase read the content: < type the passphrase >
./read.sh ./files/someFileName.dat thepasscode
You can also flush the result into file
./read.sh ./files/someFileName.dat > thefile.txt
This project is licensed under the MIT License - see the LICENSE file for details