aboutsummaryrefslogtreecommitdiffhomepage
path: root/encrypt.py
diff options
context:
space:
mode:
authorMarvin Borner2019-06-23 12:43:01 +0200
committerMarvin Borner2019-06-23 12:43:01 +0200
commit58c37bec9826396aa0da9f983007522c9a62107d (patch)
tree581268ae11115adb290bf054b24ac43e143bc7ed /encrypt.py
parent0740711fdeadb4765a2e1f495ed85b4846ef926f (diff)
parent0f82454032665192eaafec9dd76e88e7efa35b9f (diff)
Merge remote-tracking branch 'origin/master'
# Conflicts: # presentation/css/style.css
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))