Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 809 Bytes

File metadata and controls

29 lines (16 loc) · 809 Bytes

Image Encryption Decryption

  • It is used to convert an image into an unrecognizable format (encryption) and then converting it back to its original format (decryption) using cryptographic techniques.

  • This ensures the image's confidentiality during transmission or storage.

Installation

Use the package manager pip to install cryptography(dependencies)

pip install cryptography

Usage

  • User need to clone/download the repo and run the encrypt.py it will generate a key and encrypt the image that you choose.

  • And to decrypt just run the decrypt.py it used the generated key to decrypt the image.

git clone https://github.com/uph3r/Image-Encryption-Decryption
cd Image-Encryption-Decryption
python encrypt.py          #to encrypt
python decrypt.py          #to decrypt