From 43b4e020fc3719237e0032555b7aceb5f398af7a Mon Sep 17 00:00:00 2001
From: Dominik Fuhrmann <dominik.fuhrmann1@gmail.com>
Date: Wed, 25 Dec 2024 21:07:00 +0100
Subject: [PATCH] raspi as server

---
 communication/client.py | 2 +-
 communication/server.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/communication/client.py b/communication/client.py
index 3467fb1..5ba841e 100644
--- a/communication/client.py
+++ b/communication/client.py
@@ -97,7 +97,7 @@ def load_public_key():
     return public_key
 
 def main():
-    host = '192.168.178.51'
+    host = '192.168.178.63'
     port = 12345
     
     # Load the public RSA key (for encrypting the symmetric key)
diff --git a/communication/server.py b/communication/server.py
index 517f4a5..54cbe13 100644
--- a/communication/server.py
+++ b/communication/server.py
@@ -128,7 +128,7 @@ def decrypt_message(algorithm, key, encrypted_message):
 
 # Define server configuration
 def main():
-    host = '192.168.178.51'
+    host = '192.168.178.63'
     port = 12345
     
     # Load RSA private key
-- 
GitLab