Lab 3: Strings and Command Line Arguments
Preliminaries
Development Environment
You can complete this assignment on Mac, Ubuntu, WSL as well as on replit.
Test Script
To help you complete the lab, I have provide a test script that will run basic tests against your program. The script is not designed to be comprehensive, and you will graded based on a larger array of tests. To execute the test script, run it from anywhere within the lab directory.
./test.sh
README file
You are required to fill out the README.md file in your repository describing your programming process as well as answer any related lab questions.
Compiling your code:
To compile your code, use gcc
the gnu c compiler using the following command:
gcc -Wall prog.c -o prog
The -Wall
option will provide additional warnings, and prog
is replaced with the program in question.
Part 1: Palindrome Checking (30 Points)
For this part of the lab, you will complete a small program to check if the input provided by the user is a palindrome. A palindrome is a string that is the same forward and backwards.
There are two main ways for testing if a string is a palindrome:
-
Iterate from forward to back, and from back to forward, and check that they are the same.
-
Create a copy of the string, in reverse, and check that the copy matches the original.
You will implement both; however, the challenge is working with C strings. The main portion of the program, provided to you, looks like such:
int main(int argc, char * argv[]){
char str[1024];
printf("Enter a string:\n");
scanf("%1023s",str);
if(check1(str)){
printf("Palindrome according to check 1\n");
}else{
printf("NOT a palindrome according to check 1\n");
}
if(check2(str)){
printf("Palindrome according to check 2\n");
}else{
printf("NOT a palindrome according to check 2\n");
}
}
Note that the input is read into the str
string and may be substantially shorter than the length 1024. It is also passed to the check1()
and check2()
functions without a length argument. You should make sure that you use strlen()
somewhere.
Additionally, to complete check2()
which requires making a copy of the string; don’t forget that C strings must be NULL terminated. If you do not NULL terminate, strcmp()
will not work.
-
You must complete the
palindrome
program using two checks. check1()
andcheck2()
must use two distinct algorithms:check1()
use two iterators, one from the start and one from the end of the string, to check if the front and back are the samecheck2()
copy the string to a new string, in reverse, and compare the two strings usingstrcmp()
- (Extra Credit: 5 points): Complete both
check1()
andcheck2()
algorithms only using pointer types, no integers. That is, you may not use integer indexing of the string like so:str[i]
. If you complete the extra credit, be sure to indicate so in your README file.
Here is some sample output:
aviv@saddleback: part1 $ ./palindrome
Enter a string:
racecar
Palindrome according to check 1
Palindrome according to check 2
aviv@saddleback: part1 $ ./palindrome
Enter a string:
madamimadam
Palindrome according to check 1
Palindrome according to check 2
aviv@saddleback: part1 $ ./palindrome
Enter a string:
amanaplanacanalpanama
Palindrome according to check 1
Palindrome according to check 2
aviv@saddleback: part1 $ ./palindrome
Enter a string:
notapalindrome
NOT a palindrome according to check 1
NOT a palindrome according to check 2
aviv@saddleback: part1 $
Part 2: Cryptanalysis (70 points)
This part of the lab can be found in the part2
folder in the repository.
In this part of the lab, you are going to write two small programs to perform cryptanalysis and cipher text cracking — this will come in the form of a letter frequency program freq
and a letter substitution program sub
. You will use both programs to decrypt a secret message provided to you cipher.txt
that was encrypted with a substitution cipher, where each letter is replaced with a different letter.
Perhaps the most famous substitution cipher is the Caeser cipher, attributed to the Roman emperor Julius Caesar, where it was used for communicating with his generals in secret code. The cipher is rather simple, and describes shifting the alphabet by three letters such that A->C
and B->D
and C->E
and so on; decryption requires shifting in the reverse direction. More advanced substitution cipher allow for arbitrary substitutions, not just by a shift, as long as those substations are consistent throughout the document.
Unfortunately, any substitution cipher is trivially broken with some basic tools and analysis because of one fatal flaw. The distribution of letters of the plain text will be identical to that of the cipher text (under the substitution). Consider that English text (if we assume the input, plain-text is English) has a known letter distribution: if we see that Q
is now the most frequent letter in the cipher text, then it was probably subbed with S
to get pack to the plain text.
Your task for this part of the lab is to write two programs: freq
and sub
. The freq
program will take as input a text file and report the alpha letter frequencies of that file (ignoring non-alpha characters), and the sub
program will print out the text of a file with letter substations based on a key-file, containing the substitution rules.
freq
- The frequency program should take one argument,
input.txt
, as a command line argument. It can be run like below:./freq input.txt
- It should output the count of each letter frequency as well as it’s percentage, with two decimal points of precision’s. For example, you are provided a file called
swift.txt
containing Jonathan Swift’s A Modest Proposal. Runningfreq
on that file produces the following output:$ ./freq swift.txt A: 2232 (7.15%) B: 580 (1.86%) C: 1009 (3.23%) D: 1147 (3.67%) E: 3793 (12.14%) F: 801 (2.56%) G: 732 (2.34%) H: 1385 (4.43%) I: 2157 (6.91%) J: 113 (0.36%) K: 239 (0.77%) L: 1137 (3.64%) M: 761 (2.44%) N: 2226 (7.13%) O: 2658 (8.51%) P: 768 (2.46%) Q: 31 (0.10%) R: 2224 (7.12%) S: 1669 (5.34%) T: 2979 (9.54%) U: 978 (3.13%) V: 291 (0.93%) W: 590 (1.89%) X: 61 (0.20%) Y: 666 (2.13%) Z: 4 (0.01%)
freq
should ignore all non-alpha charachter in the input file, and should count frequencies of lower and upper-case equivalent. That isa
andA
both count the same, not for different frequencies. As you can see above, report your frequencies using upper-case.
Sub
- The
sub
program takes two inputs,key.txt
, andcipher.txt
, and run with the following command line arguments../sub key.txt cipher.txt
- The
key.txt
file is organized where each letterA-Z
matches to a substitution, likeQ:S
(subQ
forS
). Theno-op
key.txt
file that does no-substitutions, would be like be (and is provided in the repo askey.txt
).A:A B:B C:C ... Y:Y Z:Z
As part of your analysis, you’ll change the right part (after the
:
) inkey.txt
to decrypt the secret message with substitutions. After you decrypt the key by using yourfreq
for your analysis, you need to manually update thekey.txt
with your decrypted key . Such like:A:M B:F C:L D:E ...
- To test your substitution program, it should produce the following output when run on the test input and test key.
$ ./sub test-key.txt test-cipher.txt
... FO CMR TKHMO PKMWOFWMU YMUJH – GQJ WMB SKMP FO MKQJBX GQJ VQK SMKAOC MR GQJ LQJBX MWKQRR OCH WQUX AQQBR QV NMTUMB LHOM; GQJ WMB UFH QB FO QB OCH LKFUUFMBO AMKLUH-RMBXHX LHMWCHR QV RMBOKMTFBJR Y, FBCMUFBT OCH CHMXG RHM YMPQJKR; GQJ WMB RUHHP JBXHK FO LHBHMOC OCH ROMKR SCFWC RCFBH RQ KHXUG QB OCH XHRHKO SQKUX QV EMEKMVQQB; JRH FO OQ RMFU M AFBF KMVO XQSB OCH RUQS CHMYG KFYHK AQOC; SHO FO VQK JRH FB CMBX-OQ-CMBX-WQALMO; SKMP FO KQJBX GQJK CHMX OQ SMKX QVV BQZFQJR VJAHR QK OQ MYQFX OCH TMDH QV OCH KMYHBQJR LJTLUMOOHK LHMRO QV OKMMU (M AFBXLQTTFBTUG ROJPFX MBFAMU, FO MRRJAHR OCMO FV GQJ WMB’O RHH FO, FO WMB’O RHH GQJ – XMVO MR M LJRC, LJO YHKG, YHKG KMYHBQJR); GQJ WMB SMYH GQJK OQSHU FB HAHKTHBWFHR MR M XFROKHRR RFTBMU, MBX QV WQJKRH XKG GQJKRHUV QVV SFOC FO FV FO ROFUU RHHAR OQ LH WUHMB HBQJTC.
Note, that your sub
program can both encrypted and decrypt, as above does an encryption!
You should complete the following for this part of the lab
freq.c
based on the specifications abovesub.c
based on the specifications above- Use
freq
program and the exampleswift.txt
for your letter distribution to determine the key forcipher.txt
- Once you believe you’ve successfully decrypted the message, save it by running the following command:
./sub key.txt cipher.txt > plain.txt
This will save the output to a file called
plain.txt
. Add that file to your repo for submission.