Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Assignment 4 B: Caesar Cipher. One of the simplest methods to encrypt a message is to shift the letters by a literal value. For example,
Assignment B: Caesar Cipher. One of the simplest methods to encrypt a message is to
"shift" the letters by a literal value. For example, if we take the letter A and shift it by we get
This "substitution cipher" gets its name from the Roman emperor Julius Caesar, who was
one of the first person known to encode secret messages this way.
For this assignment, you will create a program that prompts the user for a message to encode,
as well as an offset to encrypt it with. You will then create and use the following methods:
A validation method that takes in the message as a string and the offset integer
entered by the user. The method should return "true" if the offset is between and
inclusively and the message contains only letters and spaces. If it fails either criteria, it
should return "false".
If the validation method returns true, a second encryption method should be called. This
method also takes in the message as a string and the offset integer entered by the
user. It should convert the message to UPPERCASE, encrypt every letter in the
message, and leave the spaces as they were. It should then return the encrypted
message.
Hint: The ord function will give us the ASCII integer value of a particular letter, and the chr
function will convert a number to a string. How could we use these functions in this assignment?
Hint: What happens if our offset makes the letter go past There are several ways to deal
with this we can either use the modulus operator creatively, or use a loop to add the offset
value one at a time. In the latter case, if the letter becomes greater than note the single
quotes we can reset it back to A and keep going.
Sample Output:
Enter your message:
KSU Class of
Enter the offset value:
Sorry, we can only process messages with letters and spaces, and the offset
must be between and
Do you want to encrypt another message?:
In python please Sample Output:
Enter your message:
KSU Class of
Enter the offset value:
Sorry, we can only process messages with letters and spaces, and the offset
must be between and
Do you want to encrypt another message?:
Enter your message:
First Year Experience at KSU
Enter the offset value:
Your secret message is
SVEFG LRNE RKCREVRAPR NG XFH
Do you want to encrypt another message?: n
Closing out...
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