Secret-Key Encryption Lab
Secret-Key Encryption Lab
1 Overview
The learning objective of this lab is for students to get familiar with the concepts in the secret-key encryption
and some common attacks on encryption. From this lab, students will gain a first-hand experience on
encryption algorithms, encryption modes, paddings, and initial vector (IV). Moreover, students will be able
to use tools and write programs to encrypt/decrypt messages.
Many common mistakes have been made by developers in using the encryption algorithms and modes.
These mistakes weaken the strength of the encryption, and eventually lead to vulnerabilities. This lab
exposes students to some of these mistakes, and ask students to launch attacks to exploit those vulnerabilities.
This lab covers the following topics:
• Secret-key encryption
• Substitution cipher and frequency analysis
• Encryption modes, IV, and paddings
• Common mistakes in using encryption algorithms
• Programming using the crypto library
Readings. Detailed coverage of the secret-key encryption can be found in the following:
• Chapter 21 of the SEED Book, Computer & Internet Security: A Hands-on Approach, 2nd Edition,
by Wenliang Du. See details at https://www.handsonsecurity.net.
Lab Environment. This lab has been tested on our pre-built Ubuntu 16.04 VM, which can be downloaded
from the SEED website.
• Step 1: let us do some simplification to the original article. We convert all upper cases to lower cases,
and then removed all the punctuations and numbers. We do keep the spaces between words, so you can
still see the boundaries of the words in the ciphertext. In real encryption using monoalphabetic cipher,
SEED Labs – Secret-Key Encryption Lab 2
spaces will be removed. We keep the spaces to simplify the task. We did this using the following
command:
$ tr [:upper:] [:lower:] < article.txt > lowercase.txt
$ tr -cd ’[a-z][\n][:space:]’ < lowercase.txt > plaintext.txt
• Step 2: let us generate the encryption key, i.e., the substitution table. We will permute the alphabet
from a to z using Python, and use the permuted alphabet as the key. See the following program.
$ python
>>> import random
>>> s = "abcdefghijklmnopqrstuvwxyz"
>>> list = random.sample(s, len(s))
>>> ’’.join(list)
’sxtrwinqbedpvgkfmalhyuojzc’
• Step 3: we use the tr command to do the encryption. We only encrypt letters, while leaving the space
and return characters alone.
$ tr ’abcdefghijklmnopqrstuvwxyz’ ’sxtrwinqbedpvgkfmalhyuojzc’ \
< plaintext.txt > ciphertext.txt
We have created a ciphertext using a different encryption key (not the one described above). You can
download it from the lab’s website. Your job is to use the frequency analysis to figure out the encryption
key and the original plaintext.
Guidelines. Using the frequency analysis, you can find out the plaintext for some of the characters quite
easily. For those characters, you may want to change them back to its plaintext, as you may be able to get
more clues. It is better to use capital letters for plaintext, so for the same letter, we know which is plaintext
and which is ciphertext. You can use the tr command to do this. For example, in the following, we replace
letters a, e, and t in in.txt with letters X, G, E, respectively; the results are saved in out.txt.
$ tr ’aet’ ’XGE’ < in.txt > out.txt
There are many online resources that you can use. We list four useful links in the following:
Please replace the ciphertype with a specific cipher type, such as -aes-128-cbc, -bf-cbc,
-aes-128-cfb, etc. In this task, you should try at least 3 different ciphers. You can find the meaning
of the command-line options and all the supported cipher types by typing "man enc". We include some
common options for the openssl enc command in the following:
-in <file> input file
-out <file> output file
-e encrypt
-d decrypt
-K/-iv key/iv in hex is the next argument
-[pP] print the iv/key (then exit if -P)
1. Let us treat the encrypted picture as a picture, and use a picture viewing software to display it. How-
ever, For the .bmp file, the first 54 bytes contain the header information about the picture, we have
to set it correctly, so the encrypted file can be treated as a legitimate .bmp file. We will replace the
header of the encrypted picture with that of the original picture. We can use the bless hex editor
tool (already installed on our VM) to directly modify binary files. We can also use the following
commands to get the header from p1.bmp, the data from p2.bmp (from offset 55 to the end of the
file), and then combine the header and data together into a new file.
$ head -c 54 p1.bmp > header
$ tail -c +55 p2.bmp > body
$ cat header body > new.bmp
2. Display the encrypted picture using a picture viewing program (we have installed an image viewer
program called eog on our VM). Can you derive any useful information about the original picture
from the encrypted picture? Please explain your observations.
Select a picture of your choice, repeat the experiment above, and report your observations.
SEED Labs – Secret-Key Encryption Lab 4
5 Task 4: Padding
For block ciphers, when the size of a plaintext is not a multiple of the block size, padding may be required.
All the block ciphers normally use PKCS#5 padding, which is known as standard block padding (see Chapter
21.4 of the SEED book for details). We will conduct the following experiments to understand how this type
of padding works:
1. Use ECB, CBC, CFB, and OFB modes to encrypt a file (you can pick any cipher). Please report which
modes have paddings and which ones do not. For those that do not need paddings, please explain why.
2. Let us create three files, which contain 5 bytes, 10 bytes, and 16 bytes, respectively. We can use the
following "echo -n" command to create such files. The following example creates a file f1.txt
with length 5 (without the -n option, the length will be 6, because a newline character will be added
by echo):
$ echo -n "12345" > f1.txt
We then use "openssl enc -aes-128-cbc -e" to encrypt these three files using 128-bit AES
with CBC mode. Please describe the size of the encrypted files.
We would like to see what is added to the padding during the encryption. To achieve this goal, we
will decrypt these files using "openssl enc -aes-128-cbc -d". Unfortunately, decryption
by default will automatically remove the padding, making it impossible for us to see the padding.
However, the command does have an option called "-nopad", which disables the padding, i.e.,
during the decryption, the command will not remove the padded data. Therefore, by looking at the
decrypted data, we can see what data are used in the padding. Please use this technique to figure out
what paddings are added to the three files.
It should be noted that padding data may not be printable, so you need to use a hex tool to display the
content. The following example shows how to display a file in the hex format:
$ hexdump -C p1.txt
00000000 31 32 33 34 35 36 37 38 39 49 4a 4b 4c 0a |123456789IJKL.|
$ xxd p1.txt
00000000: 3132 3334 3536 3738 3949 4a4b 4c0a 123456789IJKL.
3. Unfortunately, a single bit of the 55th byte in the encrypted file got corrupted. You can achieve this
corruption using the bless hex editor.
4. Decrypt the corrupted ciphertext file using the correct key and IV.
SEED Labs – Secret-Key Encryption Lab 5
Please answer the following question: How much information can you recover by decrypting the cor-
rupted file, if the encryption mode is ECB, CBC, CFB, or OFB, respectively? Please answer this question
before you conduct this task, and then find out whether your answer is correct or wrong after you finish this
task. Please provide justification.
If we replace OFB in this experiment with CFB (Cipher Feedback), how much of P2 can be revealed?
You only need to answer the question; there is no need to demonstrate that.
The attack used in this experiment is called the known-plaintext attack, which is an attack model for
cryptanalysis where the attacker has access to both the plaintext and its encrypted version (ciphertext). If
this can lead to the revealing of further secret information, the encryption scheme is not considered as secure.
A good cipher should not only tolerate the known-plaintext attack described previously, it should also
tolerate the chosen-plaintext attack, which is an attack model for cryptanalysis where the attacker can obtain
the ciphertext for an arbitrary plaintext. Since AES is a strong cipher that can tolerate the chosen-plaintext
attack, Bob does not mind encrypting any plaintext given by Eve; he does use a different IV for each
plaintext, but unfortunately, the IVs he generates are not random, and they can always be predictable.
Your job is to construct a message P2 and ask Bob to encrypt it and give you the ciphertext. Your
objective is to use this opportunity to figure out whether the actual content of P1 is Yes or No.
• The key used to encrypt this plaintext is an English word shorter than 16 characters; the word can be
found from a typical English dictionary. Since the word has less than 16 characters (i.e. 128 bits),
pound signs (#: hexadecimal value is 0x23) are appended to the end of the word to form a key of
128 bits.
Your goal is to write a program to find out the encryption key. You can download a English word list
from the Internet. We have also linked one on the web page of this lab. The plaintext, ciphertext, and IV are
listed in the following:
Plaintext (total 21 characters): This is a top secret.
Ciphertext (in hex format): 764aa26b55a4da654df6b19e4bce00f4
ed05e09346fb0e762583cb7da2ac93a2
SEED Labs – Secret-Key Encryption Lab 7
• If you choose to store the plaintext message in a file, and feed the file to your program, you need to
check whether the file length is 21. If you type the message in a text editor, you need to be aware that
some editors may add a special character to the end of the file. The easiest way to store the message
in a file is to use the following command (the -n flag tells echo not to add a trailing newline):
$ echo -n "This is a top secret." > file
• In this task, you are supposed to write your own program to invoke the crypto library. No credit will
be given if you simply use the openssl commands to do this task. Sample code can be found from
the following URL:
https://www.openssl.org/docs/man1.0.2/crypto/EVP_EncryptInit.html
• When you compile your code using gcc, do not forget to include the -lcrypto flag, because your
code needs the crypto library. See the following example:
$ gcc -o myenc myenc.c -lcrypto
Note to instructors. We encourage instructors to generate their own plaintext and ciphertext using a dif-
ferent key; this way students will not be able to get the answer from another place or from previous courses.
Instructors can use the following commands to achieve this goal (please replace the word example with
another secret word, and add the correct number of # signs to make the length of the string to be 16):
$ echo -n "This is a top secret." > plaintext.txt
$ echo -n "example#########" > key
$ xxd -p key
6578616d706c65232323232323232323
$ openssl enc -aes-128-cbc -e -in plaintext.txt -out ciphertext.bin \
-K 6578616d706c65232323232323232323 \
-iv 010203040506070809000a0b0c0d0e0f \
$ xxd -p ciphertext.bin
e5accdb667e8e569b1b34f423508c15422631198454e104ceb658f5918800c22
9 Submission
You need to submit a detailed lab report, with screenshots, to describe what you have done and what you
have observed. You also need to provide explanation to the observations that are interesting or surprising.
Please also list the important code snippets followed by explanation. Simply attaching code without any
explanation will not receive credits.