diff --git a/server/netwrapper.py b/server/netwrapper.py index e33728e..a09cc71 100644 --- a/server/netwrapper.py +++ b/server/netwrapper.py @@ -26,7 +26,7 @@ class NetWrapper: self.authenticationInstance = authenticationInstance def ecryptRSAMessage(self, message: str) -> bytes: - cipher_rsa = PKCS1_OAEP.new(self.clientPublicKey) + cipher_rsa = PKCS1_OAEP.new(self.currentClientPublicKey) encrypted_msg = cipher_rsa.encrypt(message.encode('UTF-8')) return encrypted_msg @@ -40,7 +40,7 @@ class NetWrapper: def verifyRSAHeaderSignature(self, header: bytes, headersignature: bytes) -> bool: h = SHA512.new(header) try: - pkcs1_15.new(self.clientPublicKey).verify(h, headersignature) + pkcs1_15.new(self.currentClientPublicKey).verify(h, headersignature) return True except Exception: return False