November 2019
Intermediate to advanced
346 pages
9h 36m
English
The following steps will guide you through how to use ConvCrypt in order to encrypt an image. Let's get started:
Run the encrypt.py script against the image or file you would like to encrypt:
python encrypt.py --input_file "input file path" --output_file "encrypted file path" --key_file "key file name"
The output of the preceding code is displayed in the following screenshot:

To see that the file has been encrypted, attempt to open it. We will see that it cannot be opened due to it being encrypted:

To decrypt the file, ...