1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
| N_ROUNDS = 10
key = b'\x75\x73\x65\x72\x30\x31\x5f\x6e\x6b\x63\x74\x66\x32\x30\x32\x34' ciphertext = b'\xb0\xcc\x93\xea\xe9\x2f\xef\x56\x99\x39\x6e\x02\x3b\x4f\x9e\x42'
s_box = ( 0x31, 0x52, 0x5a, 0xc8, 0x0b, 0xac, 0xf3, 0x3a, 0x8b, 0x54, 0x27, 0x9b, 0xab, 0x95, 0xde, 0x83, 0x60, 0xcb, 0x53, 0x7f, 0xc4, 0xe3, 0x0a, 0x97, 0xe0, 0x29, 0xd5, 0x68, 0xc5, 0xdf, 0xf4, 0x7b, 0xaa, 0xd6, 0x42, 0x78, 0x6c, 0xe9, 0x70, 0x17, 0xd7, 0x37, 0x24, 0x49, 0x75, 0xa9, 0x89, 0x67, 0x03, 0xfa, 0xd9, 0x91, 0xb4, 0x5b, 0xc2, 0x4e, 0x92, 0xfc, 0x46, 0xb1, 0x73, 0x08, 0xc7, 0x74, 0x09, 0xaf, 0xec, 0xf5, 0x4d, 0x2d, 0xea, 0xa5, 0xda, 0xef, 0xa6, 0x2b, 0x7e, 0x0c, 0x8f, 0xb0, 0x04, 0x06, 0x62, 0x84, 0x15, 0x8e, 0x12, 0x1d, 0x44, 0xc0, 0xe2, 0x38, 0xd4, 0x47, 0x28, 0x45, 0x6e, 0x9d, 0x63, 0xcf, 0xe6, 0x8c, 0x18, 0x82, 0x1b, 0x2c, 0xee, 0x87, 0x94, 0x10, 0xc1, 0x20, 0x07, 0x4a, 0xa4, 0xeb, 0x77, 0xbc, 0xd3, 0xe1, 0x66, 0x2a, 0x6b, 0xe7, 0x79, 0xcc, 0x86, 0x16, 0xd0, 0xd1, 0x19, 0x55, 0x3c, 0x9f, 0xfb, 0x30, 0x98, 0xbd, 0xb8, 0xf1, 0x9e, 0x61, 0xcd, 0x90, 0xce, 0x7c, 0x8d, 0x57, 0xae, 0x6a, 0xb3, 0x3d, 0x76, 0xa7, 0x71, 0x88, 0xa2, 0xba, 0x4f, 0x3e, 0x40, 0x64, 0x0f, 0x48, 0x21, 0x35, 0x36, 0x2f, 0xe8, 0x14, 0x5d, 0x51, 0xd8, 0xb5, 0xfe, 0xd2, 0x96, 0x93, 0xa1, 0xb6, 0x43, 0x0d, 0x4c, 0x80, 0xc9, 0xff, 0xa3, 0xdd, 0x72, 0x05, 0x59, 0xbf, 0x0e, 0x26, 0x34, 0x1f, 0x13, 0xe5, 0xdc, 0xf2, 0xc6, 0x50, 0x1e, 0xe4, 0x85, 0xb7, 0x39, 0x8a, 0xca, 0xed, 0x9c, 0xbb, 0x56, 0x23, 0x1a, 0xf0, 0x32, 0x58, 0xb2, 0x65, 0x33, 0x6f, 0x41, 0xbe, 0x3f, 0x6d, 0x11, 0x00, 0xad, 0x5f, 0xc3, 0x81, 0x25, 0xa8, 0xa0, 0x9a, 0xf6, 0xf7, 0x5e, 0x99, 0x22, 0x2e, 0x4b, 0xf9, 0x3b, 0x02, 0x7a, 0xb9, 0x5c, 0x69, 0xf8, 0x1c, 0xdb, 0x01, 0x7d, 0xfd )
inv_s_box = ( 0xe3, 0xfd, 0xf5, 0x30, 0x50, 0xbd, 0x51, 0x70, 0x3d, 0x40, 0x16, 0x04, 0x4d, 0xb5, 0xc0, 0xa2, 0x6d, 0xe2, 0x56, 0xc4, 0xa9, 0x54, 0x7f, 0x27, 0x66, 0x82, 0xd6, 0x68, 0xfb, 0x57, 0xca, 0xc3, 0x6f, 0xa4, 0xf0, 0xd5, 0x2a, 0xe8, 0xc1, 0x0a, 0x5e, 0x19, 0x79, 0x4b, 0x69, 0x45, 0xf1, 0xa7, 0x87, 0x00, 0xd8, 0xdc, 0xc2, 0xa5, 0xa6, 0x29, 0x5b, 0xce, 0x07, 0xf4, 0x84, 0x97, 0x9f, 0xe0, 0xa0, 0xde, 0x22, 0xb4, 0x58, 0x5f, 0x3a, 0x5d, 0xa3, 0x2b, 0x71, 0xf2, 0xb6, 0x44, 0x37, 0x9e, 0xc9, 0xab, 0x01, 0x12, 0x09, 0x83, 0xd4, 0x93, 0xd9, 0xbe, 0x02, 0x35, 0xf8, 0xaa, 0xee, 0xe5, 0x10, 0x8d, 0x52, 0x62, 0xa1, 0xdb, 0x78, 0x2f, 0x1b, 0xf9, 0x95, 0x7a, 0x24, 0xe1, 0x60, 0xdd, 0x26, 0x9a, 0xbc, 0x3c, 0x3f, 0x2c, 0x98, 0x74, 0x23, 0x7c, 0xf6, 0x1f, 0x91, 0xfe, 0x4c, 0x13, 0xb7, 0xe7, 0x67, 0x0f, 0x53, 0xcc, 0x7e, 0x6b, 0x9b, 0x2e, 0xcf, 0x08, 0x65, 0x92, 0x55, 0x4e, 0x8f, 0x33, 0x38, 0xb1, 0x6c, 0x0d, 0xb0, 0x17, 0x88, 0xef, 0xeb, 0x0b, 0xd2, 0x61, 0x8c, 0x85, 0xea, 0xb2, 0x9c, 0xba, 0x72, 0x47, 0x4a, 0x99, 0xe9, 0x2d, 0x20, 0x0c, 0x05, 0xe4, 0x94, 0x41, 0x4f, 0x3b, 0xda, 0x96, 0x34, 0xad, 0xb3, 0xcd, 0x8a, 0xf7, 0x9d, 0xd3, 0x75, 0x89, 0xdf, 0xbf, 0x59, 0x6e, 0x36, 0xe6, 0x14, 0x1c, 0xc8, 0x3e, 0x03, 0xb8, 0xd0, 0x11, 0x7d, 0x8e, 0x90, 0x63, 0x80, 0x81, 0xaf, 0x76, 0x5c, 0x1a, 0x21, 0x28, 0xac, 0x32, 0x48, 0xfc, 0xc6, 0xbb, 0x0e, 0x1d, 0x18, 0x77, 0x5a, 0x15, 0xcb, 0xc5, 0x64, 0x7b, 0xa8, 0x25, 0x46, 0x73, 0x42, 0xd1, 0x6a, 0x49, 0xd7, 0x8b, 0xc7, 0x06, 0x1e, 0x43, 0xec, 0xed, 0xfa, 0xf3, 0x31, 0x86, 0x39, 0xff, 0xae, 0xb9, )
def shift_rows(s): s[0][1], s[1][1], s[2][1], s[3][1] = s[1][1], s[2][1], s[3][1], s[0][1] s[0][2], s[1][2], s[2][2], s[3][2] = s[2][2], s[3][2], s[0][2], s[1][2] s[0][3], s[1][3], s[2][3], s[3][3] = s[3][3], s[0][3], s[1][3], s[2][3]
def inv_shift_rows(s): s[1][1], s[2][1], s[3][1], s[0][1] = s[0][1], s[1][1], s[2][1], s[3][1] s[2][2], s[3][2], s[0][2], s[1][2] = s[0][2], s[1][2], s[2][2], s[3][2] s[3][3], s[0][3], s[1][3], s[2][3] = s[0][3], s[1][3], s[2][3], s[3][3]
def xtime(a): return (((a << 1) ^ 0x1B) & 0xFF) if (a & 0x80) else (a << 1)
def mix_single_column(a): t = a[0] ^ a[1] ^ a[2] ^ a[3] u = a[0] a[0] ^= t ^ xtime(a[0] ^ a[1]) a[1] ^= t ^ xtime(a[1] ^ a[2]) a[2] ^= t ^ xtime(a[2] ^ a[3]) a[3] ^= t ^ xtime(a[3] ^ u)
def mix_columns(s): for i in range(4): mix_single_column(s[i])
def inv_mix_columns(s): for i in range(4): u = xtime(xtime(s[i][0] ^ s[i][2])) v = xtime(xtime(s[i][1] ^ s[i][3])) s[i][0] ^= u s[i][1] ^= v s[i][2] ^= u s[i][3] ^= v
mix_columns(s)
def bytes2matrix(text): """ Converts a 16-byte array into a 4x4 matrix. """ return [list(text[i:i+4]) for i in range(0, len(text), 4)]
def matrix2bytes(m): return bytes(sum(m, []))
def add_round_key(s, k): for i in range(4): for j in range(4): s[i][j] ^= k[i][j]
def inv_sub(s): for i in range(4): for j in range(4): s[i][j] = inv_s_box[s[i][j]]
def expand_key(master_key): """ Expands and returns a list of key matrices for the given master_key. """ r_con = ( 0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1B, 0x36, 0x6C, 0xD8, 0xAB, 0x4D, 0x9A, 0x2F, 0x5E, 0xBC, 0x63, 0xC6, 0x97, 0x35, 0x6A, 0xD4, 0xB3, 0x7D, 0xFA, 0xEF, 0xC5, 0x91, 0x39, ) key_columns = bytes2matrix(master_key) iteration_size = len(master_key) // 4 columns_per_iteration = len(key_columns) i = 1 while len(key_columns) < (N_ROUNDS + 1) * 4: word = list(key_columns[-1])
if len(key_columns) % iteration_size == 0: word.append(word.pop(0)) word = [s_box[b] for b in word] word[0] ^= r_con[i] i += 1 elif len(master_key) == 32 and len(key_columns) % iteration_size == 4: word = [s_box[b] for b in word]
word = bytes(i ^ j for i, j in zip(word, key_columns[-iteration_size])) key_columns.append(word)
return [key_columns[4*i: 4*(i+1)] for i in range(len(key_columns) // 4)]
def decrypt(key, ciphertext): round_keys = expand_key(key) Cipher_matrix = bytes2matrix(ciphertext) add_round_key(Cipher_matrix, round_keys[-1]) for i in range(N_ROUNDS - 1, 0, -1): inv_shift_rows(Cipher_matrix) inv_sub(Cipher_matrix) add_round_key(Cipher_matrix, round_keys[i]) inv_mix_columns(Cipher_matrix) inv_shift_rows(Cipher_matrix) inv_sub(Cipher_matrix) add_round_key(Cipher_matrix, round_keys[0])
plaintext = matrix2bytes(Cipher_matrix) return plaintext
print(key.hex(), ciphertext.hex()) print(decrypt(key, ciphertext))
|