File Encrypter
(追記ここまで)(追記) (追記ここまで)(追記)This is a command-line interface (CLI) tool that provides secure file encryption and decryption functionalities. The tool allows users to encrypt sensitive files using a strong encryption algorithm, making the contents unreadable to unauthorized individuals. It also enables users to decrypt encrypted files, restoring them to their original state.
(追記ここまで)(追記)Install Dependencies
(追記ここまで)(追記) (追記ここまで)- Step 1 : Clone the Repository
- Step 2 : Change directory to File-Encrypter
cd Amazing-Python-Scripts/File-Encrypter
(追記ここまで)- Step 3: run the command
pip install -r requirements.txt(追記ここまで)(追記)
Usage
(追記ここまで)(追記) (追記ここまで)- Create a file with the content you want to encrypt in the same directory as the script, the run -
python script.py <file_name> encrypt(追記ここまで)
- Congratulations ! The file is encrypted. You would notice that your original file is gone and replaced with a
.encrypted
file of the same name. To decrypt it run -
python script.py <file_name.encrypted> decrypt(追記ここまで)
- For more info, run this -
python script.py --help(追記ここまで)(追記)
secret.key
(追記ここまで)(追記) (追記ここまで)(追記)This is a crucial file generated automatically when you first encrypt your file. It contained the main Encryption Key. It needs to be present in the same folder too. If you're really planning to hide some important data, better move this file somewhere else. But dont lose it.
(追記ここまで)
0 commit comments