·
Assignment 2 PART 1
1. Show that for all possible binary bit values of Miand Si,Mi+ Simod 2 = MiXOR Si
(10 points)
2. Given a 3 bit key K=101 and a 3 bit initial seed S=001, encrypt M=11001010. Consider LFSR based stream cipher and show your work. (20 points)
3. Write one paragrapg note on RC4 (use web resources) (10 points)
·
Assignment 2 PART 2
0. A stream cipher uses a LFSR with three units. An attacker captures a ciphertext “0101001010011”. The attacker knows that the first 6 bits of the message are “110001.” Using this information, the attacker defeats this encryption, i.e., he is able to determine the initial seed values (S1, S2and S3) and Keys (K1, K2and K3). What are those values? (Points 25)
Calculation Hints:
Remember:
S1throughS6can be computed byXORing6 bit message with the first 6 bits ofciphertext.Then formulate the following equations forS4throughS6 :
Sm+1= Sm
×Km+Sm-1
×Km-1+ ……S2
×K2+S1
×K1mod 2
Sm+2= Sm+1
×Km+Sm
×Km-1+ ……S3
×K2+S2
×K1mod2
Sm+3= Sm+2
×Km+Sm+1
×Km-1+ ……S4
×K2+S3
×K1mod2
Number of units in the shift register determines the value of m.
Many of you may not feel comfortable solving systems of equation. You can apply the following brute force method:
Check, all possible sets of values of K1, K2and K3listed in the following tableto find out which set satisfies all the above equations(i.e., makes both sides of the equations equal):
K1
|
K2
|
K3
|
0
|
0
|
0
|
0
|
0
|
1
|
0
|
1
|
0
|
0
|
1
|
1
|
1
|
0
|
0
|
1
|
0
|
1
|
1
|
1
|
0
|
1
|
1
|
1
|
1. An organization uses same stream cipher key multiple times. An attacker who knows that, captures two ciphertexts C1 and C2 and finds that,
C1⊕C2=0000101000011101000000110001001100010000000101000000011000000011000010100000100100011011
The attacker also knows that the plaintexts are composed of only English capital letters without any punctuations or space, and that part of the plaintexts contains the word: “PRESIDENT”. He was able to recover both the plaintexts. Show, how. (Points 25)
Hints: SlideASCII for“PRESIDENT”overC1⊕C2 and XOR them.You can start from the left and keep sliding right, or start from the right and keep sliding left until you find a meaningful 9 letter phrase (since PRESIDENT is a 9 letter word). Onceyou retrievethe partial plaintexts,use your intuition and linguistic observations to complete the rest as much as possible.