Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Substitution cipher program in c++

28/10/2021 Client: muhammad11 Deadline: 2 Day

Encryption And Decryption C++ Language

CS150 Assignment 7 Cryptography

Date assigned: Monday, November 23, 2015 Date Due: Tuesday, December 8, 2015, 9:40 am (40 points) There is no late grace period for this last assignment!!!!! Cryptography is an exciting area of Computer Science concerned with hiding and protecting information. This is the branch of Computer Science that allows you to send your credit card securely to a web site or to decrypt or encrypt secret messages. For this project, you will be building a program that will take a plain text file and produce an encrypted file (or vice versa). The encryption scheme you need to implement is inspired by the Enigma Machine, a German encryption machine from WWII (http://en.wikipedia.org/wiki/Enigma_machine). The Enigma machine code was broken by Alan Turing and his team at Bletchley Park during World War II. Encryption Scheme: Simple substitution A simple substitution cipher (sometimes called a Caesar cipher) maps each letter of the alphabet to another letter of the alphabet as shown below:

To encrypt a letter, find the letter on the top and use the letter below it as the encrypted output. Using the above table, the encrypted output for C would be Z. To decrypt a letter, find the letter on the bottom and use the letter above it as the decrypted output. To make things more interesting, a secret key is used to specify how the input characters are mapped to output characters. The key, which is a single character, specifies which letter the output row starts on. The key in the above example is X. (The input row always starts with A). N-Way Substitution You will need to implement an N-Way substitution encryption scheme. This means you will have N substitution mappings. The character to be encrypted will be used as the input to the first mapping; the output of the first mapping will be the input to the second mapping. The output of the second mapping will be the input to the third mapping, etc. The output of the N-1 mapping is the input to the N mapping, and the output of the N mapping is the encrypted character. Each mapping has its own key, so you will have a total of N secret keys for this scheme. The value N, which is specified by the user, may be between 2 and 25. You must use a single, multidimensional array to represent all of these mappings.

Input 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 X Y Z A B C D E F G H I J K L M N O P Q R S T U V W Output

Encryption example (N = 2, keys of X and R): The initial input character of F gets mapped to C by the first mapping, and this becomes the input of the second mapping. Under the second mapping, this input character gets mapped to T which is the encrypted output character. Mapping 1: Input character: F (decrypted)

partial mapping array

Mapping 2: partial mapping array Output character: T (encrypted)

Decryption example (N = 2, keys of X and R): Decryption works in the opposite direction with the inputs and outputs reversed in each mapping. The input character of T gets mapped to C under the second mapping, and this becomes the input of the first mapping. Under the first mapping, this input character C gets mapped back to F which is the decrypted output character. Mapping 1: Output character: F (decrypted)

partial mapping array

Mapping 2: partial mapping array

Input character: T (encrypted) For this assignment, you need to allow the user to encrypt or decrypt as many files as they want. The user will need to specify the N keys and the input and output files. Your output must look exactly like the following (user input is in red): ******************** * ENCRYPTION ******************** Enter E)ncode, D)ecode, Q)uit: E Enter Number of Mappings (2-­‐25): 6 Enter the 6 keys: OREGON Enter plaintext filename: plaintext.txt Enter ciphertext filename: ciphertext.txt Encode Success Enter E)ncode, D)ecode, Q)uit: Q

Input A B C D E F G X Y Z A B C D Output

Input A B C D E F G R S T U V W X Output

Output A B C D E F G X Y Z A B C D Input

Output A B C D E F G R S T U V W X Input

Functions

You must use at least the following functions:

• void printHeading (const char heading[]); Description: Prints the heading as displayed on the sample output of the previous page.

• void getMappingData (int &numberOfMappings, char key[]); Description: Prompts the user for the number of mappings and the keys as displayed on the sample output. The number of mappings and keys are returned through the parameters numberOfMappings and key. To validate the key, you will need to use a string function called strlen, which returns the number of characters in the key. For example, the following program segment will allow the user to enter a key such as OREGON and then output 6. You will need to #include for the use of strlen. Remember, do not declare any string variables.

cin >> key; //Typing in OREGON produces a key OREGON\0 cout << static_cast(strlen (key)); // 6 is output

• void openFileForRead (ifstream &inputFile, const char message[]);

Description: Accepts a message to be displayed (e.g. Enter plaintext filename: ), then prompts the user to enter a plaintext file validating that the file exists and is open. Do not proceed until a proper file can be opened.

• void openFileForWrite (ofstream &outputFile, const char message[]); Description: Similar to openFileForRead only we are writing to a file.

• void constructMappingArray (char mappingArray[][LETTERS_IN_ALPHABET],

const char keyArray[], int numberOfMappings);

Description: Using the keyArray and numberOfMappings, you are to create the mappingArray as discussed above.

• void printMappingArray (const char mappingArray[][LETTERS_IN_ALPHABET], int numberOfMappings); Description: This function is simply for debugging. After you create the mappingArray, print it out to make sure you have a correct mappingArray. If not, there is no point in going on until this array is correct.

• char decodeCharacter (char ciphertextCharacter, const char mappingArray[][LETTERS_IN_ALPHABET], int numberOfMappings);

Description: Using the number of mappings and the mappingArray, this function takes an encoded character and returns a decoded character using the process described above.

• char encodeCharacter (char plaintextCharacter, const char mappingArray[][LETTERS_IN_ALPHABET],

int numberOfMappings);

Description: Using the number of mappings and the mappingArray, this function takes a plaintext character and returns a ciphertext character using the process described above.

• You can add more functions as you see fit. If you only use the functions described above, your main function might be a little long, say around 65 lines of code.

Part A (Due Wednesday, December 2, 2015 by 1pm) You are to implement the functions printHeading, getMappingData, openFileForRead, openFileForWrite, constructMappingArray, and printMappingArray. For part A only, display the mappingArray. You do not need to turn in a printed copy of your program for part A. Only an electronic copy is necessary for this part. Part B (Due Tuesday, December 8, 2015 by 9:40am) The completed project is due by the date and time specified including a printed copy and an electronic copy.

Notes

• You are to use arrays to help you encode and decode your message.

• Do not declare any string variables in your solution. Only char arrays are allowed.

• Be sure to validate all input. Continue asking for input until valid input is given. The secret keys must be uppercase letters.

• Only upper case alphabetic characters are to be encoded and decoded --any other characters are to be left as is and outputted. This includes any punctuation, spaces, returns, etc.

• You need to encode your favorite joke and email the encoded message to me by 9:40 am the day the project is due. In the subject line of the email, specify all the secret keys you use (at least 5).

• At least one encoded file will be placed on Grace a few days before the assignment is due. To complete this assignment you must submit the following: 1. An electronic copy of your program on Grace

a. Add a new project named 07_Cryptography to your previously created assignment solution called PUNetIDAssignments. It is vital that you name your project correctly!

b. Type your program (fully documented/commented) into the project. You must follow the coding standards!

c. Pay attention to the example output! Your program’s output must look exactly like the example output! The spacing and newlines in your output must match exactly.

d. Make sure that your program compiles and runs correctly. If you get any errors, double check that you typed everything correctly.

e. Make sure that your program does not produce any warnings. f. Once you are sure that the program works correctly it is time to submit your program. You do

this by logging on to Grace and placing your complete solution folder in the CS150-01 Drop folder. This solution folder must contain previous assignments.

g. The solution must be in the drop folder by 9:40am on the day that it is due. Remember, there is no late grace period for this last assignment.

2. A hard copy of your program a. The hard copy must be placed on the instructor’s desk by 9:40am on the day that it is due. b. The hard copy must be printed in color, double-sided, and stapled if necessary. c. Your tab size must be set to 2 and you must not go past column 80 in your output.

Good luck! And remember, if you have any problems, come and see me straight away. START EARLY!!

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Instant Assignment Writer
Assignment Solver
A+GRADE HELPER
Financial Assignments
Math Exam Success
WRITING LAND
Writer Writer Name Offer Chat
Instant Assignment Writer

ONLINE

Instant Assignment Writer

I reckon that I can perfectly carry this project for you! I am a research writer and have been writing academic papers, business reports, plans, literature review, reports and others for the past 1 decade.

$31 Chat With Writer
Assignment Solver

ONLINE

Assignment Solver

I have done dissertations, thesis, reports related to these topics, and I cover all the CHAPTERS accordingly and provide proper updates on the project.

$39 Chat With Writer
A+GRADE HELPER

ONLINE

A+GRADE HELPER

I have done dissertations, thesis, reports related to these topics, and I cover all the CHAPTERS accordingly and provide proper updates on the project.

$24 Chat With Writer
Financial Assignments

ONLINE

Financial Assignments

I am a professional and experienced writer and I have written research reports, proposals, essays, thesis and dissertations on a variety of topics.

$36 Chat With Writer
Math Exam Success

ONLINE

Math Exam Success

After reading your project details, I feel myself as the best option for you to fulfill this project with 100 percent perfection.

$31 Chat With Writer
WRITING LAND

ONLINE

WRITING LAND

I have read your project details and I can provide you QUALITY WORK within your given timeline and budget.

$26 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Unit 40 international marketing assignment - Atoms in one molecule of trinitrotoluene tnt ch3c6h2 no2 3 - What was the carter doctrine - Purposeful structure in king's letter assignment answers - Klockner moeller contactors catalogue - Parametric versus nonparametric statistics - Sontag Reading #1 - Ecf meaning mark scheme - Lingual arch space maintainer indications - Discussion bored 1 - Nursing case studies with answers - Reply 1 and 2 ,150 words each one by 10/28/2020 at 6:00 pm ,please add references - Presenting problem example treatment plan - Presenting issues in a counselling context - A cheerleading staple that was patented in 1971 by herkimer - The last dance despelder pdf - Trevor noah plays who d you rather - The salesperson's task of identifying potential customers is known as - How to read literature like a professor chapter 12 summary - Swot analysis of samsung 2015 - For Daniel Only - Kas direct sourcing private limited - Harcourt education catalyst 3 answers - Biofloc fish farming australia - Specification for highway works series 600 - Curtin university essay format - Why is there no electric field inside a conducting sphere - Statistics for Business - How to calculate logical address in paging - Ac soft start circuit - Module 04: Managing Employee Benefits Paper - Healthcare Effectiveness Data and Information Set (HEDIS) - Pegging currency to gold and guaranteeing convertibility - How to remove bindi mark from forehead - Are you Looking to pay someone to do my essay? - 1 page in APA 6th Format Operational Excellence - Tips for facilitating group discussion - Auditing questions and answers - Types of window display in visual merchandising - PVC 6 - Cross manufacturing company chennai - Who inhabited iceland first - Why do humans make synthetic resources - Nsw health positions vacant - Maori fish hook meaning - Asc 605 bill and hold - Breeder's own pet foods inc case prezi - Icd 10 code for bleach ingestion - Internet cyber cafe business plan - 18 goyder road parap - States of matter presentation - AB=+1 - Triumph t90 parts list - Chapter 1 homework accounting - Disney theme park case study - DDOS - Problem-Solving - Unit 6 test a spanish - Double approach avoidance conflict - High commitment management approach - Why do i want to be house captain - A reality check on renewables david mackay - What is remember the titans about - Valley bank boca raton fl - Nt2580 project part 2 - Tv news report script - Nyu food studies phd - Food - Celf preschool 2 age range - In parallel arrays, corresponding elements in each array must have the same __________. - International dimensions of organizational behavior free pdf - Cisco unity connection wiki - Physics Lab Report 4 - 2 address instruction example - Science - Self Awarness - Essentials of lifespan development 6th edition pdf - Confidence interval for the population standard deviation aleks - Dulce et decorum est annotated - Defining spiritual development a missing consideration for student affairs - How to customize quickbooks online dashboard - Flood prevention methods gcse - ????ℂ???? ℝ????????????????????????????: ???????????? ???????????????? ???????????????????????????????? ????????????????????????????? - Manage business document design and development assessment - Gauge to meter conversion - Stages of career development psychology - Renowned recluse crossword puzzle clue - Lymphoscintigraphy cpt code - Hpe officeconnect switch 1820 8g j9979a firmware - Six major american film genres - Australian aboriginal initiation rite crossword clue - A green disc found in palisade cells - Ethics area of knowledge - Square root of 352 - Sacred destination presentation - Dsdm consortium website - Auditors should be familiar with available professional literature - Anatomy and physiology of breastfeeding - Yahoo finance apple income statement - E Documents