aboutsummaryrefslogtreecommitdiffhomepage
path: root/encrypt.py
diff options
context:
space:
mode:
Diffstat (limited to 'encrypt.py')
-rw-r--r--encrypt.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/encrypt.py b/encrypt.py
index 00d4778..a02645f 100644
--- a/encrypt.py
+++ b/encrypt.py
@@ -110,6 +110,7 @@ def encrypt(text, passphrase):
else:
mixed_matrix = mix_columns(diffused_matrix)
merged_matrix = xor_matrices(mixed_matrix, round_keys[r + 1])
+ print(" ".join([int_to_hex_string(item) for sublist in merged_matrix for item in sublist]))
flat_matrix = [int_to_hex_string(item) for sublist in merged_matrix for item in sublist]
print(" ".join(flat_matrix))