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
C 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
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