CryptoPix is a Python project that combines AES encryption with steganography to hide encrypted text within an image. The project utilizes the AES encryption algorithm for secure text encryption and LSB steganography for hiding the encrypted text within an image without visibly altering its appearance.
- Encrypt text using the AES encryption algorithm.
- Hide encrypted text within an image using LSB steganography.
- Decrypt hidden text from a steganographic image using the AES encryption key.
- Clone the repository:
git clone https://github.com/shashank-amireddy/cryptopix.git
- Install the required Python libraries:
- Run the encryption script:
python encrypt.py
- Enter the text to be encrypted and the encryption key when prompted.
- The encrypted text will be hidden within the specified input image, and the steganographic image will be saved to the output path.
- To decrypt the hidden text, run the decryption script:
python decrypt.py
- Enter the path to the steganographic image and the encryption key when prompted.
- The hidden text will be extracted and decrypted, and the original plaintext will be displayed.