diff --git a/server/netwrapper.py b/server/netwrapper.py index e5a0d9b..d1e971f 100644 --- a/server/netwrapper.py +++ b/server/netwrapper.py @@ -1 +1,20 @@ #!/usr/bin/env python3 + +class NetWrapper: + + def __init__(self, publicKey: str, privateKey: str, cipherKey: str = ""): + self.publicKey = publicKey + self.privateKey = privateKey + self.cipherKey = cipherKey + + def identifyServer(self): + pass + + def identifyCleint(self): + pass + + def sendMessage(self): + pass + + def recieveMessage(self): + pass