Question: Write a Java program that decrypts the following message: :mmZdxZmx]Zpgy Message is encrypted using the enemy's secret code. You have just learned that their encryption

Write a Java program that decrypts the following message: :mmZ\dxZmx]Zpgy Message is encrypted using the enemy's secret code. You have just learned that their encryption method is based upon the ASCII code. Individual characters in a string are encoded using this system. For example, the letter "A"is encoded using the numbers 65 and "B" is encoded using the numbers 66. Your enemy's secret code takes each letter of the message and encrypts it as follows:- if(originalChar + key > 126) then encryptedChar = 32 + ((originalChar + key)-127) else encryptedChar = (originalChar + key) For example, if the enemy uses key = 10, then the message "Hey" would be encrypted as:- Character ASCII Code H 72 e 101 y 121 Encrypted H = (72 + 10) = 82 = R in ASCII Encrypted e = (101 + 10) = 111 = o in ASCII Encrypted y = 32 + ((121 + 10) - 127) = 36 = $ in ASCII Consequently, "Hey" would be translated as "Ro$" in ASCII Write a program that decrypts the intercepted message. The ASCII codes for the unencrypted message are limited to the visible ASCII characters. You only know that the key used is a number between 1 and 100. Your program should try to decode the message using all possible keys between 1 and 100. When you try the valid key, the message will make sense. For all other keys, the message will appear as gibberish.

Write comments on or near each line of code explaining what it does and submit a picture of the programs output.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!