jsmit124 / Stegafy

An image steganography program for encrypting and decrypting information within pixels of an image
1 stars 0 forks source link

Extract text file #13

Closed jsmit124 closed 4 years ago

jsmit124 commented 4 years ago

You will need to determine how many bits per color channel were used to embed the message so it can be extracted.

Additionally, the following requirements must be met: Extract the message until the following characters are encountered: #.-.-. -#, which means the end of the message has been reached. The extracted message should be displayed within the GUI. The #.-.-. -# characters should not be displayed. If when extracting the image, it is determined that encryption was used, then decrypt the message upon extraction.

In addition, display both the encrypted and decrypted message as well as the keyword for the Vigenère cipher.

jsmit124 commented 4 years ago

You will need to determine how many bits per color channel were used to embed the message so it can be extracted. COMPLETED

jsmit124 commented 4 years ago

Completed