Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

In C, please read carefully and have the output similar in the picture. This is my 3rd post and people are posting codes not related

In C, please read carefully and have the output similar in the picture.

This is my 3rd post and people are posting codes not related to this problem or having different output.

The key string and cipher text are in the picture

image text in transcribed

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Introduction Your second assignment will consist of a decryption problem. Some encrypted text will be provided and your job is to write a C program to decrypt it. As always, the C program should be submitted as a standard C source code file, Please note that the computer program should comply with the commenting and formatting rules as described in class. For example, there should be a header for the whole program that gives the author's name, class name, date, and description. End braces should be commented, and there are alignment and indenting requirements as discussed. Please ask if you have any questions Program 1: Modified Caesar Cipher Basic Caesar Cipher In cryptography, a Caesar Cipher is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. For example, with a left shift of 3, D would be replaced by A, E would become B, and so on. The method is named after Julius Caesar, who used it in his private correspondence. (https://en.wikipedia.org/wiki/Caesar_cipher) GHEI XEYIZ In a Caesar Cipher, the encryption is performed against a key string, which is often just the 26 letters of the alphabet. An offset value is defined that consists of a positive or negative integer. The plaintext (the normal text) is encrypted, one letter at a time, by using that offset value in the following way: (a) the index position within the key string of the letter to be encrypted is determined, (b) the offset value is applied to that index in order to obtain a new index within the key string, (c) the character at the new index is written as the cipher text. For a simple example, let's assume the key string consists of the 26 letters of the alphabet plus a space: 0 Here we have the 26 letters of the English alphabet plus a space with their index positions listed above. (To simplify, we'll stick with all caps for the moment.) We want to encrypt the phrase "I LOVE TO FLY" using an offset of +5. We get the following: Plain text: Cipher text: I LOVE TO FLY NEQT JEYTEKQC Note that 'I' has an index of 8 within the key string. When we add 5 we get an index of 13 which corresponds to the letter 'N', also within the key string. We then write down that letter as the first character of the encrypted text. Similarly, the letter 'Y' has an index of 24. When we add 5 we get 29, but since that index doesn't exist within the array, we "wrap around" and replace the , with a 'C' (Note that the "O, is not counted.) To decrypt a message, we apply the offset value in reverse. If the offsets were added to produce the cipher text, then they should be subtracted to reconstitute the plaintext. Cipher text: Plain text: NEQT JEYTEKQC I LOVE TO FLY Here the plaintext is obtained from the cipher text by subtracting a constant offset of 5. Note that with this technique, spaces are treated just like any other character. Note also that we did not access the ASCII table in any way. All offsets are calculated within the key string only. Modification of the Caesar Cipher The basic Caesar Cipher has a characteristic that makes it relatively easy to break: every character in the plain text is encoded with the same character in the cipher text. In the above example, every space is encoded with an 'E. Since the space is the most commonly used character, an observant reader could assume that a space is represented by an E' and determine the offset from that. A variation on the basic Caesar Cipher uses a variable offset, one that is different for each character encoded. In this algorithm, the first character of the plain text will be encoded by some firstOffset as above, the next character is encoded by (firstOffset+1), the next by (firstOffset+2), etc. As you can see, the offsets grow sequentially from the first character of the plain text to the last. This ensures that instances of a character in the plain text will be represented by different characters in the cipher text. Here is the above string encoded with a sequential offset that begins with 5. Notice that the "I" is still encoded by "N", which represents an offset of 5. But all other characters are encoded by different and sequential offsets. Plain text: Cipher text: I LOVE TO FLY NFSWDOKEANUAO Here the "I" is encoded with an offset of 5, yielding a cipher text character "N". The first space is encoded with an offset of 6, yielding a cipher text character of "F". The "L" is encoded with an offset of7, yielding a cipher text character of "S", and so forth. Each character is encoded by an offset 1 larger than the preceding character until the end of the plain text is reached Let's apply the modified Caesar Cipher described above to a more complicated example. What follows is the key string you can use to decrypt the cipher text. Key String: "hXTFexn39AJ6cmCYgktNuUwBdlKL04R1DSQrH y5q8VpjIzMGivEfasoWOb72zP" The only characters in the key string are lower case alpha characters, upper case alpha characters, digits from 0 to 9, and a space. Those characters have been jumbled up to make the problem more difficult. The double quotes are used to ma rk the ends of the key string; they are not part of it. The cipher text that you need to decrypt against that key string is Ciper text: Vs8dLIcPJuiEfFsyOA89JTInn4cveUqsQBybz20Rj PtFJBt5fK" Of necessity, all characters in the cipher text are contained within the key string. The sequential offset values used to encrypt the plain text are positive and can begin with any number between 1 and 60. You should, therefore, apply negative sequential offsets to decrypt the cipher text. Assignment Your task is to determine the initial offset value that will correctly decrypt the cipher text above and apply the modified Caesar Cipher algorithm to it to decrypt the string. When you find the correct initial offset, you will be able to read the string. If you do what the decrypted string says, you can have 5 extra bonus points. In order to determine the initial offset value, your program should calculate all possible initial offsets from 1 to 60. Your output should look like the following, where "Offset" means "Initial Offset": Cipher Text: "Vs8dLIcPJuiEfFsyOA89JTInn4cveUgsQBybz20RjPtFJBt5fK" Offset: 1Result: 8fyuw5xsXJy55f5wqswEfpwIjFGwysAwXfFwdwfaFuyw0qQsF5 Offset: Result: E NUyeahA yyEyU5aUvEVUjpTMU a9UhETUBUEfTN UL5SaTy Offset: 3; Result: 5vHtu FfP9H v uyfuiv8upVXZuHf3uPvXuwuvEXtHuKyDfX Offset: 4 Result: yirkNHTEz3rHHiHN ENGiqNV8hINrEnNzihNUNivhkrN1 1EhH Offset: 5; Result: GQgtrXv2nQrrGrtHvtMG5t8qPjtovxt2GPtutGiPgQtdHRvPr Make sure these results are lined up and neat, as it makes the analysis much easier. Remember that since the cipher text was encrypted with positive offsets, you will decrypt with negative offsets. These are actual data, so you can use them to check your program. After the full list is generated, you will be able to visually scan through it and determine the offset and the plain text. Hints Hints The following functions would be useful to your solution. I suggest writing them from scratch for practice, although C versions exist. We will discuss the C versions when we get to that part of the course. A function to determine the length of a C-string. Note that the 10' is not included in the length calculation 1. a. int strlen (char *) ; (string.h) 2. A function to locate a character within a C-string and return its index value. a. This function can be used to find a given character within the key string. Finally, you can initialize a C-string with the key string and cipher text specified above by copy/pasting those strings into your code, but here is an important point: never copy/paste from a non-text file, like a PDF for example, directly into your code. Instead, copy/paste the text into Notepad or Notepad++ first, then copy/paste into your code. This eliminates most of the problems caused by hidden formatting characters and other issues. Introduction Your second assignment will consist of a decryption problem. Some encrypted text will be provided and your job is to write a C program to decrypt it. As always, the C program should be submitted as a standard C source code file, Please note that the computer program should comply with the commenting and formatting rules as described in class. For example, there should be a header for the whole program that gives the author's name, class name, date, and description. End braces should be commented, and there are alignment and indenting requirements as discussed. Please ask if you have any questions Program 1: Modified Caesar Cipher Basic Caesar Cipher In cryptography, a Caesar Cipher is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. For example, with a left shift of 3, D would be replaced by A, E would become B, and so on. The method is named after Julius Caesar, who used it in his private correspondence. (https://en.wikipedia.org/wiki/Caesar_cipher) GHEI XEYIZ In a Caesar Cipher, the encryption is performed against a key string, which is often just the 26 letters of the alphabet. An offset value is defined that consists of a positive or negative integer. The plaintext (the normal text) is encrypted, one letter at a time, by using that offset value in the following way: (a) the index position within the key string of the letter to be encrypted is determined, (b) the offset value is applied to that index in order to obtain a new index within the key string, (c) the character at the new index is written as the cipher text. For a simple example, let's assume the key string consists of the 26 letters of the alphabet plus a space: 0 Here we have the 26 letters of the English alphabet plus a space with their index positions listed above. (To simplify, we'll stick with all caps for the moment.) We want to encrypt the phrase "I LOVE TO FLY" using an offset of +5. We get the following: Plain text: Cipher text: I LOVE TO FLY NEQT JEYTEKQC Note that 'I' has an index of 8 within the key string. When we add 5 we get an index of 13 which corresponds to the letter 'N', also within the key string. We then write down that letter as the first character of the encrypted text. Similarly, the letter 'Y' has an index of 24. When we add 5 we get 29, but since that index doesn't exist within the array, we "wrap around" and replace the , with a 'C' (Note that the "O, is not counted.) To decrypt a message, we apply the offset value in reverse. If the offsets were added to produce the cipher text, then they should be subtracted to reconstitute the plaintext. Cipher text: Plain text: NEQT JEYTEKQC I LOVE TO FLY Here the plaintext is obtained from the cipher text by subtracting a constant offset of 5. Note that with this technique, spaces are treated just like any other character. Note also that we did not access the ASCII table in any way. All offsets are calculated within the key string only. Modification of the Caesar Cipher The basic Caesar Cipher has a characteristic that makes it relatively easy to break: every character in the plain text is encoded with the same character in the cipher text. In the above example, every space is encoded with an 'E. Since the space is the most commonly used character, an observant reader could assume that a space is represented by an E' and determine the offset from that. A variation on the basic Caesar Cipher uses a variable offset, one that is different for each character encoded. In this algorithm, the first character of the plain text will be encoded by some firstOffset as above, the next character is encoded by (firstOffset+1), the next by (firstOffset+2), etc. As you can see, the offsets grow sequentially from the first character of the plain text to the last. This ensures that instances of a character in the plain text will be represented by different characters in the cipher text. Here is the above string encoded with a sequential offset that begins with 5. Notice that the "I" is still encoded by "N", which represents an offset of 5. But all other characters are encoded by different and sequential offsets. Plain text: Cipher text: I LOVE TO FLY NFSWDOKEANUAO Here the "I" is encoded with an offset of 5, yielding a cipher text character "N". The first space is encoded with an offset of 6, yielding a cipher text character of "F". The "L" is encoded with an offset of7, yielding a cipher text character of "S", and so forth. Each character is encoded by an offset 1 larger than the preceding character until the end of the plain text is reached Let's apply the modified Caesar Cipher described above to a more complicated example. What follows is the key string you can use to decrypt the cipher text. Key String: "hXTFexn39AJ6cmCYgktNuUwBdlKL04R1DSQrH y5q8VpjIzMGivEfasoWOb72zP" The only characters in the key string are lower case alpha characters, upper case alpha characters, digits from 0 to 9, and a space. Those characters have been jumbled up to make the problem more difficult. The double quotes are used to ma rk the ends of the key string; they are not part of it. The cipher text that you need to decrypt against that key string is Ciper text: Vs8dLIcPJuiEfFsyOA89JTInn4cveUqsQBybz20Rj PtFJBt5fK" Of necessity, all characters in the cipher text are contained within the key string. The sequential offset values used to encrypt the plain text are positive and can begin with any number between 1 and 60. You should, therefore, apply negative sequential offsets to decrypt the cipher text. Assignment Your task is to determine the initial offset value that will correctly decrypt the cipher text above and apply the modified Caesar Cipher algorithm to it to decrypt the string. When you find the correct initial offset, you will be able to read the string. If you do what the decrypted string says, you can have 5 extra bonus points. In order to determine the initial offset value, your program should calculate all possible initial offsets from 1 to 60. Your output should look like the following, where "Offset" means "Initial Offset": Cipher Text: "Vs8dLIcPJuiEfFsyOA89JTInn4cveUgsQBybz20RjPtFJBt5fK" Offset: 1Result: 8fyuw5xsXJy55f5wqswEfpwIjFGwysAwXfFwdwfaFuyw0qQsF5 Offset: Result: E NUyeahA yyEyU5aUvEVUjpTMU a9UhETUBUEfTN UL5SaTy Offset: 3; Result: 5vHtu FfP9H v uyfuiv8upVXZuHf3uPvXuwuvEXtHuKyDfX Offset: 4 Result: yirkNHTEz3rHHiHN ENGiqNV8hINrEnNzihNUNivhkrN1 1EhH Offset: 5; Result: GQgtrXv2nQrrGrtHvtMG5t8qPjtovxt2GPtutGiPgQtdHRvPr Make sure these results are lined up and neat, as it makes the analysis much easier. Remember that since the cipher text was encrypted with positive offsets, you will decrypt with negative offsets. These are actual data, so you can use them to check your program. After the full list is generated, you will be able to visually scan through it and determine the offset and the plain text. Hints Hints The following functions would be useful to your solution. I suggest writing them from scratch for practice, although C versions exist. We will discuss the C versions when we get to that part of the course. A function to determine the length of a C-string. Note that the 10' is not included in the length calculation 1. a. int strlen (char *) ; (string.h) 2. A function to locate a character within a C-string and return its index value. a. This function can be used to find a given character within the key string. Finally, you can initialize a C-string with the key string and cipher text specified above by copy/pasting those strings into your code, but here is an important point: never copy/paste from a non-text file, like a PDF for example, directly into your code. Instead, copy/paste the text into Notepad or Notepad++ first, then copy/paste into your code. This eliminates most of the problems caused by hidden formatting characters and other issues

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions