aboutsummaryrefslogtreecommitdiffhomepage
path: root/encrypt.py
diff options
context:
space:
mode:
Diffstat (limited to 'encrypt.py')
-rw-r--r--encrypt.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/encrypt.py b/encrypt.py
index a02645f..00d4778 100644
--- a/encrypt.py
+++ b/encrypt.py
@@ -110,7 +110,6 @@ 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))