From c128842e20c27c4d849e9c264f240dd502d9c455 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 23 Jun 2019 12:45:02 +0200 Subject: Fixed minor issues --- encrypt.py | 1 - 1 file changed, 1 deletion(-) (limited to 'encrypt.py') 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)) -- cgit v1.2.3