If header files are added please provide them The Caesar cipher is one of the earliest known and simplest ciphers. It is a type of substitution cipher in which each letter in the plaintext is 'shifted' a certain number of places down the alphabet. A B C D E F G H I J K L M N O P Q R S T U V W X Y Z U V W X Y Z A B C D E F G H I J K L M N O P Q R S T H E L L O W O R L D Normal Text B Y F F I Q I R M X Encrypted Text You are tasked to create an encryption program which takes a key word. The keyword will fill the first part of the shifted array. The remaining letters will fill the end of the array. It should look like this: Key=”TOY A B C D E F G H I J K L M N O P Q R S T U V W X Y Z T O Y A B C D E F G H I J K L M N P Q R S U V W X Z You should have an interactive menu with the following options: 1 Enter Key word //takes new key word and re-aligns shifted array 2 Encrypt message//takes a message of 140 characters and encrypts message 3 Decrypt message//takes an encrypted massage of 140 characters and decrypts it 4 Quit//exits program; A couple tips: Use the copy function from the library not the library. If you use the algorithm library you need to make a change in visual studios precompiler settings or you will get an error. You cannot assign arrays using the ‘=’ operator; only individual indices of the array can be assigned this way. Take one case or the other for input. All Caps or all lowercase. You can use “toupper()” to set all letters to upper case: http://cpp.sh/7gwx /* toupper example */ #include #include #include //for toupper using namespace std; int main () { int i=0; char str[]="Test String.\n"; char c; while (str[i]) { c=str[i]; str[i]=toupper(c); i++; } std::cout<

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Posting this 4th time if wrong answer this time will downvote and give bad reviews too If header files are added please provide them The Caesar cipher is one of the earliest known and simplest ciphers. It is a type of substitution cipher in which each letter in the plaintext is 'shifted' a certain number of places down the alphabet. A B C D E F G H I J K L M N O P Q R S T U V W X Y Z U V W X Y Z A B C D E F G H I J K L M N O P Q R S T H E L L O W O R L D Normal Text B Y F F I Q I R M X Encrypted Text You are tasked to create an encryption program which takes a key word. The keyword will fill the first part of the shifted array. The remaining letters will fill the end of the array. It should look like this: Key=”TOY A B C D E F G H I J K L M N O P Q R S T U V W X Y Z T O Y A B C D E F G H I J K L M N P Q R S U V W X Z You should have an interactive menu with the following options: 1 Enter Key word //takes new key word and re-aligns shifted array 2 Encrypt message//takes a message of 140 characters and encrypts message 3 Decrypt message//takes an encrypted massage of 140 characters and decrypts it 4 Quit//exits program; A couple tips: Use the copy function from the library not the library. If you use the algorithm library you need to make a change in visual studios precompiler settings or you will get an error. You cannot assign arrays using the ‘=’ operator; only individual indices of the array can be assigned this way. Take one case or the other for input. All Caps or all lowercase. You can use “toupper()” to set all letters to upper case: http://cpp.sh/7gwx /* toupper example */ #include #include #include //for toupper using namespace std; int main () { int i=0; char str[]="Test String.\n"; char c; while (str[i]) { c=str[i]; str[i]=toupper(c); i++; } std::cout<
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Public key encryption
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education