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. Also make sure it works on netbeans. The answer should be Attack at dawn.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started