Substitution
For this problem, you’ll write a program that implements a substitution cipher, per the below.
$ ./substitution JTREKYAVOGDXPSNCUIZLFBMWHQ
plaintext: HELLO
ciphertext: VKXXN
Accepting this Assignment
- Accept this assignment via GitHub Classroom.
- After about a minute, refresh the page and ensure you see “You’re ready to go!”.
Getting Started
Log into code.cs50.io, click on your terminal window, and execute cd
by itself. You should find that your terminal window’s prompt resembles the below:
$
Next execute
get50 substitution
in order to download a directory called substitution
into your codespace.
Then execute
cd substitution
in order to change into that directory. Your prompt should now resemble the below:
substitution/ $
Execute ls
by itself, and you should see a file called substitution.c
. Open that file by executing the below:
code substitution.c
If you run into any trouble, follow these same steps steps again and see if you can determine where you went wrong!
Background
In a substitution cipher, we “encrypt” (i.e., conceal in a reversible way) a message by replacing every letter with another letter. To do so, we use a key: in this case, a mapping of each of the letters of the alphabet to the letter it should correspond to when we encrypt it. To “decrypt” the message, the receiver of the message would need to know the key, so that they can reverse the process: translating the encrypt text (generally called ciphertext) back into the original message (generally called plaintext).
A key, for example, might be the string NQXPOMAFTRHLZGECYJIUWSKDVB
. This 26-character key means that A
(the first letter of the alphabet) should be converted into N
(the first character of the key), B
(the second letter of the alphabet) should be converted into Q
(the second character of the key), and so forth.
A message like HELLO
, then, would be encrypted as FOLLE
, replacing each of the letters according to the mapping determined by the key.
Let’s write a program called substitution
that enables you to encrypt messages using a substitution cipher. At the time the user executes the program, they should decide, by providing a command-line argument, on what the key should be in the secret message they’ll provide at runtime.
Here are a few examples of how the program might work. For example, if the user inputs a key of YTNSHKVEFXRBAUQZCLWDMIPGJO
and a plaintext of HELLO
:
$ ./substitution YTNSHKVEFXRBAUQZCLWDMIPGJO
plaintext: HELLO
ciphertext: EHBBQ
Here’s how the program might work if the user provides a key of VCHPRZGJNTLSKFBDQWAXEUYMOI
and a plaintext of hello, world
:
$ ./substitution VCHPRZGJNTLSKFBDQWAXEUYMOI
plaintext: hello, world
ciphertext: jrssb, ybwsp
Notice that neither the comma nor the space were substituted by the cipher. Only substitute alphabetical characters! Notice, too, that the case of the original message has been preserved. Lowercase letters remain lowercase, and uppercase letters remain uppercase.
Whether the characters in the key itself are uppercase or lowercase doesn’t matter. A key of VCHPRZGJNTLSKFBDQWAXEUYMOI
is functionally identical to a key of vchprzgjntlskfbdqwaxeuymoi
(as is, for that matter, VcHpRzGjNtLsKfBdQwAxEuYmOi
).
And what if a user doesn’t provide a valid key? The program should explain with an error message:
$ ./substitution ABC
Key must contain 26 characters.
Or really doesn’t cooperate, providing no command-line argument at all? The program should remind the user how to use the program:
$ ./substitution
Usage: ./substitution key
Or really, really doesn’t cooperate, providing too many command-line arguments? The program should also remind the user how to use the program:
$ ./substitution 1 2 3
Usage: ./substitution key
Try It
To try out the staff’s implementation of this problem, execute
./substitution key
substituting a valid key in place of key
, within this sandbox.
Specification
Design and implement a program, substitution
, that encrypts messages using a substitution cipher.
- Implement your program in a file called
substitution.c
in a directory calledsubstitution
. - Your program must accept a single command-line argument, the key to use for the substitution. The key itself should be case-insensitive, so whether any character in the key is uppercase or lowercase should not affect the behavior of your program.
- If your program is executed without any command-line arguments or with more than one command-line argument, your program should print an error message of your choice (with
printf
) and return frommain
a value of1
(which tends to signify an error) immediately. - If the key is invalid (as by not containing 26 characters, containing any character that is not an alphabetic character, or not containing each letter exactly once), your program should print an error message of your choice (with
printf
) and return frommain
a value of1
immediately. - Your program must output
plaintext:
(without a newline) and then prompt the user for astring
of plaintext (usingget_string
). - Your program must output
ciphertext:
(without a newline) followed by the plaintext’s corresponding ciphertext, with each alphabetical character in the plaintext substituted for the corresponding character in the ciphertext; non-alphabetical characters should be outputted unchanged. - Your program must preserve case: capitalized letters must remain capitalized letters; lowercase letters must remain lowercase letters.
- After outputting ciphertext, you should print a newline. Your program should then exit by returning
0
frommain
.
You might find one or more functions declared in ctype.h
to be helpful, per manual.cs50.io.
Walkthrough
How to Test Your Code
Execute the below to evaluate the correctness of your code using check50
. But be sure to compile and test it yourself as well!
check50 cs50/problems/2021/fall/substitution
Execute the below to evaluate the style of your code using style50
.
style50 substitution.c
How to Submit
In your terminal, execute the below.
submit50 substitution
You may submit as many times as you would like up until the deadline. To confirm your submission, go to https://github.com/classroom50/substitution-USERNAME
, where USERNAME
is your GitHub username. You should see the code from your latest submission.