jsmit124 / Stegafy

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

Encrypt text file message #15

Closed jsmit124 closed 4 years ago

jsmit124 commented 4 years ago

If the message that is being embedded is text that will be encrypted a Vigenère cipher will be used.

The user must be able to specify the keyword for the Vigenère cipher.

Other requirements for this cipher are: You will need to write out the keyword at the beginning of the message followed by #KEY#. This will indicate what the keyword is and where it stops and the message will begin write after the second #.

Do not encrypt keyword, the end of keyword and end of message characters:#KEY# and #.-.-. -#

jsmit124 commented 4 years ago

Wrote code for encrypting the text. Can be found in the VCipher.cs class.