CS代写 EA 36 56 78 in hexadecimal, write the result of SubBytes in hexadecimal.

Week 3 Tutorial Sheet
Symmetric Key Cryptography
IMPORTANT NOTES: Study lecture materials at least 1 hour and prepare Q1–3 prior to the tutorial session. Those questions will be discussed in the tutorial.
1. What is the difference between an unconditionally secure cipher and a computationally secure cipher?

Copyright By PowCoder代写 加微信 powcoder

2. What is a monoalphabetic cipher and what is a key in this cipher?
3. Vigenère cipher is a cipher similar to the one-time pad, uses the values of the letters of a secret key to shift the letters of a plaintext. However, unlike the one-time pad, it repeatedly uses the same short key to encrypt arbitrarily long plaintexts. This is done by repeating the secret key word to create a key which is as long as the message and then adding the values of the letters of the key to the letters of the plaintext. The result will be calculated mod 26 to make sure the ciphertext will also be comprised of letters. Using the Vigenère cipher, encrypt the word explanation using the key leg.
Note: You can use the foloowing values assigned for each letter: ABCDEFGHIJKLM
0 1 2 3 4 5 6 7 8 9 10 11 12 NOPQRSTUVWXYZ
13 14 15 16 17 18 19 20 21 22 23 24 25
4. Block cipher: The SubBytes in AES round operation is performed as follows. Write the input byte by byte in hexadecimal. For each byte represented in hexadecimal, use the first hexadecimal digit to select the row and uses the second hexadecimal digit to select the column, then replace the input by the corresponding byte from the SBox specified by Table 1. For example, if the input byte is 53 in hexadecimal, then the SubBytes result is ED in hexadecimal. Given the input EA 36 56 78 in hexadecimal, write the result of SubBytes in hexadecimal.
5. CBC Block Cipher Mode: For the CBC block cipher mode shown in Figure 6.4:
(a) Identify which decrypted plaintext blocks 𝑃𝑥 will be corrupted if there is an error in the
received ciphertext block 𝐶4.
(b) Assuming that the ciphertext contains 𝑁 blocks, and there was a bit-flip error in the sender
side plaintext block 𝑃3, identify through how many ciphertext blocks this error is propagated. 1

Week 3 Tutorial Sheet

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com