Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need help in c++, need to use void functuons as my protoypes, i do have my code which i will post, but how would i

Need help in c++, need to use void functuons as my protoypes, i do have my code which i will post, but how would i change it to have void functions instead.

Write a complete program that performs encryption/decryption of a text file. Encryption means you need to scramble the words of a file to become secure. Decryption means you need to apply some rules to an encrypted file in order to find the original file with its original content. An example of encryption is to replace each letter in a file with its consecutive letter in the alphabet. Therefore, a is replaced by b, b is replaced by c and so on and finally z is replaced by a. Thus, if the file contains the following message:

I am a student at csusm

The encrypted message becomes:

J bn b tuvefou bu dtvtn

Then if you get this encrypted message and the key is 1, it means you need to shift the alphabets in the decrypted message by 1 to the left to get the original message back.

This method is called rot1 indicating that every alphabet rotates by 1 during the encryption. Similarly, rot10 means every alphabet should be rotated by 10 during encryption.

Another method of encryption is to create cryptogram. A cryptogram is a message or word where each letter is replaced with another letter. For example, the string:

The birds name was squawk

might be scrambled to form

xms kbypo zhqs fho obrhfu

Note that space or any punctuation is not scrambled. In this particular case, T was replaced with x, each a was replaced with h. etc. We assume there is no difference between lower case or uppercase. Therefore, you must turn all of the letters of a word into lower case before encrypt it. For example, if your work is McMaster, the function (word = tolower(McMaster)) makes word to be equal to mcmaster.

Your job is to write a driver program(look at the program guide to see how to create a driver program)that performs different types of encryption or description. First, you need to ask the user to see if the user wants to do encryption or decryption. If the user wants to do encryption, you should find out if the user wants to use rot method or cryptogram method. If the user selects the rot method, you need to ask for the encryption key. For example, entering 15, means that the user wants to use rot15 method to do encryption. If the user selects the cryptogram method, you should open the cryptogram text file called CryptoKey where the cryptogram string is stored. The cryptogram string should contain a string of 26 letters where the first letter corresponds to letter a, the second letter corresponds to letter b and so on. For example, your cryptogram file may contain the following message.

uhtxvdepqlzfonkcrwyijsgabm

which means u corresponds to a, h corresponds to b and and finally m corresponds to z.

The same procedure should be followed for decryption. You need to ask the user which method the user wants to use (rot or cryptogram) for encryption. Then write the routines that takes an encrypted file and does the decryption to get the original file back.

You are responsible to use string and vector class in this program. For encryption, you need to read the file to be encrypted into a vector of string and place the words (one word per element) into a vector. Then read the elements of your vector one by one and do the encryption and place the encrypted word into another vector. Finally write the content of encrypted vector to an output file.

For decryption, you need to do the same process which is read the file that contains the encrypted information and place the encrypted words one by one into a vector. Then create another vector so that as you decrypt the information you can place the decrypted words into another vector. Finally, the vector that contains the decrypted words (original message) should be written to an output file.

Here is a message you can do your test:

Psychology is the study of mindand behavior[1][2]. It is an academic disciplineand an applied sciencewhich seeks to understand individuals and groups by establishing general principles and researching specific cases [3][4]. In this field, a professional practitioneror researcher is called a psychologistand can be classified as a social, behavioral, or cognitive scientist. Psychologists attempt to understand the role of mental functionsin individual and social behavior, while also exploring the physiologicaland biologicalprocesses that underlie cognitive functions and behaviors. Psychologists explore concepts such as perception, cognition, attention, emotion, intelligence, phenomenology, motivation, brain functioning, personality, behavior, and interpersonal relationships, including psychological resilience, family resilience, and other areas. Psychologists of diverse orientations also consider the unconscious mind. [5]Psychologists employ empirical methodsto infer causaland correlationalrelationships between psychosocial variables. In addition, or in opposition, to employing empiricaland deductivemethods, some especially clinicaland counselingpsychologists at times rely upon symbolic interpretationand other inductivetechniques. Psychology has been described as a "hub science", [6]with psychological findings linking to research and perspectives from the social sciences, natural sciences, medicine, humanities, and philosophy

Place the above message in a text file called Original.txt and test your program based on the following:

Execute your program to run the driver routine. Then do the following:

Encrypt the original message using rot21 (shifting every alphabet to the right 21) and call the file EncryptRot.txt

Encrypt the original message using the following cryptogram and call the file EncryptCrypto.txt

yihtqkcdplzuvwmxsgajbrfeon

Decrypt EncryptRot.txt file using rot21 (shifting every alphabet to the left 21) places and call it DecryptRot.txt

Decrypt EncryptCypto.txt file using the above cryptogram and call it DecryptCrypto.txt

Your DecryptRot.txt and DecryptCrypto.txt should be similar (not exactly identical) to your Original.txt file you used for encryption. For example, in the decrypted files all words are in lower case but it is not necessarily the case in the Original.txt file.

My code below

#include #include #include #include #include using namespace std; int main() { char choice; //To store user's choice int method; //To store encryption method int key; //Stores key for rot method string crypto_key; //Stores key for Cryptogram method ifstream file; //To read from a file ofstream output_file; //To write in a file vector initial,resultant; string word,filename,temp; int number_of_words,i,j; unsigned char ch;

while(1) { cout<<"Chose whether you wish to perform encryption or decryption "; cout<<"Press E for encryption , D for decryption and q to quit: "; cin>>choice; if(choice=='E') //Encryption { filename="original.txt"; file.open(filename.c_str()); if(file.is_open()) //Check whether file is opened { initial.clear(); resultant.clear(); number_of_words=0; while (file>>word) { initial.push_back(word); //store each word number_of_words++; } file.close(); //close the file } cout<<"Select encryption method "; cout<<"1. Rot 2. Cryptogram "; cout<<"Enter your choice: "; cin>>method; if(method==1) { cout<<"Enter encryption key: "; cin>>key; for(i=0;i='a') //lowercase character { ch= ch + key; if(ch>'z') //wrap the character ch-=26; } else //uppercase character { ch= ch + key; if(ch>'Z') //wrap the character ch-=26; } } temp+=ch; } resultant.push_back(temp); } output_file.open("rot_encrypted.txt"); for(i=0;i>method; if(method==1) { filename="rot_encrypted.txt"; file.open(filename.c_str()); if(file.is_open()) //Check whether file is opened { initial.clear(); resultant.clear(); number_of_words=0; while (file>>word) { initial.push_back(word); //store each word number_of_words++; } file.close(); //close the file } cout<<"Enter decryption key: "; cin>>key; for(i=0;i='a') //lowercase character { ch= ch - key; if(ch<'a') //wrap the character ch+=26; } else //uppercase character { ch= ch - key; if(ch<'A') //wrap the character ch+=26; } } temp+=ch; } resultant.push_back(temp); } output_file.open("rot_decrypted.txt"); for(i=0;i>word) { initial.push_back(word); //store each word number_of_words++; } file.close(); //close the file } for(i=0;i

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Neo4j Data Modeling

Authors: Steve Hoberman ,David Fauth

1st Edition

1634621913, 978-1634621915

More Books

Students also viewed these Databases questions