Using the techniques presented create a complete C++ program to emulate an Encryption/Decryption Machine. The machine will be capable of the following: V Encrypt a string entered by the user v Choose...

Only use given directions, no extra code needed. Thank you!Using the techniques presented<br>create a complete C++ program to emulate an<br>Encryption/Decryption Machine. The machine will be capable of the following:<br>V Encrypt a string entered by the user<br>v Choose between two different encryption methods<br>V Decrypt a string entered by the user<br>Choose between two different decryptions methods<br>V Decrypt without knowing the encryption method (provide all possible outputs)<br>The interface must be professional and fully intuitive to the user<br>The program will be menu driven.<br>The program will use a class to define and implement each of the methods as member functions and will<br>store the original string and the encrypted/decrypted strings as data members.<br>In addition to using a class you must also use<br>Selection statements (if, if-else, switch) the appropriate one(s) of course<br>Loops (while, for, do-while) the appropriate one(s) of course<br>Standard Libraries (don't recreate the wheel)<br>Functions<br>Arrays<br>The two encryption/decryption methods are:<br>Substitution cipher<br>Caesar cipher<br>You will need to research each and determine how to implement them. Remember in the case of the<br>Caesar cipher there are 25 possible shifts, you must be able to choose or test for all 25 options.<br>

Extracted text: Using the techniques presented create a complete C++ program to emulate an Encryption/Decryption Machine. The machine will be capable of the following: V Encrypt a string entered by the user v Choose between two different encryption methods V Decrypt a string entered by the user Choose between two different decryptions methods V Decrypt without knowing the encryption method (provide all possible outputs) The interface must be professional and fully intuitive to the user The program will be menu driven. The program will use a class to define and implement each of the methods as member functions and will store the original string and the encrypted/decrypted strings as data members. In addition to using a class you must also use Selection statements (if, if-else, switch) the appropriate one(s) of course Loops (while, for, do-while) the appropriate one(s) of course Standard Libraries (don't recreate the wheel) Functions Arrays The two encryption/decryption methods are: Substitution cipher Caesar cipher You will need to research each and determine how to implement them. Remember in the case of the Caesar cipher there are 25 possible shifts, you must be able to choose or test for all 25 options.

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here