From df475aaa34bf3fc5ea3b41eee61912c0b8c698d7 Mon Sep 17 00:00:00 2001
From: Dominik Fuhrmann <dominik.fuhrmann1@gmail.com>
Date: Tue, 31 Dec 2024 15:28:16 +0100
Subject: [PATCH] bugfix

---
 communication/client.py | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/communication/client.py b/communication/client.py
index d1e1af6..5736604 100644
--- a/communication/client.py
+++ b/communication/client.py
@@ -86,11 +86,10 @@ def main():
         elif encryption_choice == 2:
             algorithm = 'Blowfish'
             print("Choose key length:")
-            print("1. 32-bit")
-            print("2. 40-bit")
-            print("3. 64-bit")
-            print("4. 128-bit")
-            print("5. 448-bit (maximum)")
+            print("1. 40-bit")
+            print("2. 64-bit")
+            print("3. 128-bit")
+            print("4. 448-bit (maximum)")
             key_length_choice = int(input("Select: "))
             
             if key_length_choice == 1:
-- 
GitLab