Double Crypt 7

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

The Advanced Encryption Standard (AES) involves a new strong encryption algorithm. It works with three blocks of 128128 bits. Given a message block pp (plaintext) and a key block kk, the AES encryption function EE returns an encrypted block cc (ciphertext):

c=E(p,k)c = E(p, k).

The inverse of the AES encryption function EE is the decryption function DD such that

D(E(p,k),k)=pD ( E(p, k), k ) = p, E(D(c,k),k)=cE ( D(c, k), k ) = c.

In Double AES, two independent key blocks k_1k\_1 and k_2k\_2 are used in succession, first k_1k\_1, then k_2k\_2:

c_2=E(E(p,k_1),k_2)c\_2 = E ( E(p, k\_1), k\_2 ).

In this task, an integer ss is also given. Only the leftmost 4×s4 \times s bits of all keys are relevant, while the other bits (the rightmost 128128 minus 4×s4 \times s bits) are all zero.

You are to recover the encryption key pairs for some messages encrypted by Double AES. You are given both the plaintext pp and the corresponding double-encrypted ciphertext c_2c\_2, and the structure of the encryption keys as expressed by the integer ss.

You must submit the recovered keys, and not a recovery program.

입력

You are given ten problem instances in the text files named double1.in to double10.in. Each input file consists of three lines. The first line contains the integer ss, the second line the plaintext block pp, and the third line the ciphertext block c_2c\_2 obtained from pp by Double AES encryption. Both blocks are written as strings of 32 hexadecimal digits ('0'..'9', 'A'..'F'). The library provides a routine to convert strings to blocks. All input files are solvable.

출력

The first line contains the key block k_1k\_1, and the second line the key block k_2k\_2, such that 

c_2=E(E(p,k_1),k_2)c\_2 = E ( E(p, k\_1), k\_2 ).

Both blocks must be written as strings of 32 hexadecimal digits ('0'..'9', 'A'..'F'). If there are multiple solutions, you need submit only one of them.

제한

For the number ss of relevant hexadecimal digits in a key it holds that 1s51 ≤ s ≤ 5.

힌트

A good program can recover keys in less than 10 seconds for any allowed input file.