Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Need help in c++, comments, using void functions protoypes please and thank you

ID: 3749796 • Letter: N

Question

Need help in c++, comments, using void functions protoypes please and thank you

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.

Explanation / Answer

Below is the C++ code I hope that i have provided sufficient comments for your better understanding Note that I have done proper indentation but this code is automatically left alligned on this interface

#include <vector>
#include<iostream>
#include<string>
#include<fstream>
#include<algorithm>
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 <string>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<number_of_words;i++)
{
word=initial[i];
temp="";
for(j=0;j<word.size();j++)
{
ch=word[j];
if(isalpha(ch)) //Check whether character is an alphabet
{
if(ch>='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<number_of_words;i++) //Place each word in the output file
output_file<<resultant[i]<<" ";
output_file.close();
}
else
{
file.open("CryptoKey.txt");
if(file.is_open()) //Check whether file is opened
{
getline(file,crypto_key);
file.close(); //close the file
}
for(i=0;i<number_of_words;i++)
{
word=initial[i];
transform(word.begin(), word.end(), word.begin(), ::tolower); //convert the word to lowercase
temp="";
for(j=0;j<word.size();j++)
{
ch=word[j];
if(isalpha(ch)) //Check whether character is an alphabet
{
ch=crypto_key[ch-'a'];
}
temp+=ch;
}
resultant.push_back(temp);
}
output_file.open("cryptogram_encrypted.txt");
for(i=0;i<number_of_words;i++) //Place each word in the output file
output_file<<resultant[i]<<" ";
output_file.close();
}
}
else if(choice=='D')
{
cout<<"Select Decryption method ";
cout<<"1. Rot 2. Cryptogram ";
cin>>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<number_of_words;i++)
{
word=initial[i];
temp="";
for(j=0;j<word.size();j++)
{
ch=word[j];
if(isalpha(ch)) //Check whether character is an alphabet
{
if(ch>='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<number_of_words;i++) //Place each word in the output file
output_file<<resultant[i]<<" ";
output_file.close();
}
else
{
file.open("CryptoKey.txt");
if(file.is_open()) //Check whether file is opened
{
getline(file,crypto_key);
file.close(); //close the file
}
filename="cryptogram_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
}
for(i=0;i<number_of_words;i++)
{
word=initial[i];
temp="";
for(j=0;j<word.size();j++)
{
ch=word[j];
if(isalpha(ch)) //Check whether character is an alphabet
{
ch=crypto_key.find(ch)+'a';
}
temp+=ch;
}
resultant.push_back(temp);
}
output_file.open("cryptogram_decrypted.txt");
for(i=0;i<number_of_words;i++) //Place each word in the output file
output_file<<resultant[i]<<" ";
output_file.close();
}
}
else
break; //exit from the loop
}

return 0;
}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote