aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--encrypt.py1
-rw-r--r--presentation/css/style.css10
2 files changed, 0 insertions, 11 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))
diff --git a/presentation/css/style.css b/presentation/css/style.css
index cf0e33b..db9af40 100644
--- a/presentation/css/style.css
+++ b/presentation/css/style.css
@@ -30,7 +30,6 @@
right: 35%;
}
-<<<<<<< HEAD
.description {
margin-top: 16px;
}
@@ -39,8 +38,6 @@
display: none;
}
-=======
->>>>>>> origin/master
table, tbody, tr {
border: 0;
!important;
@@ -50,11 +47,4 @@ td, th {
text-align: center !important;
border: 1px solid white !important;
border-collapse: collapse;
-<<<<<<< HEAD
-=======
-}
-
-.description {
- margin-top: 16px;
->>>>>>> origin/master
} \ No newline at end of file